1 Star 0 Fork 0

大雨大大/UCMS采集接口python推送库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
post.php 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
大雨大大 提交于 2019-09-06 09:52 . 1.0.0
<?php
//UCMS官方采集插件
require('inc/config.php');
if(isset($_GET['channels'])) {
$channels=getchannelscache();
if(count($channels)>0) {
echo('<channels>');
foreach($channels as $val) {
if($val['ckind']==2) {
echo('<channel>'.$val['cid'].'-|-'.$val['name'].'</channel>');
}
}
echo('</channels>');
}
}
if(isset($_POST) && count($_POST)>0) {
$article=$_POST;
if(!isset($article['cid']) && isset($_GET['cid'])) {
$article['cid']=$_GET['cid'];
}elseif(!isset($article['cid'])) {
die('no cid');
}
$id=ainsert($article);
if(is_numeric($id)) {
echo('ok');
}else {
echo($id);
}
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dayudada/ucms_caiji_python.git
git@gitee.com:dayudada/ucms_caiji_python.git
dayudada
ucms_caiji_python
UCMS采集接口python推送库
master

搜索帮助