当前位置: 首页 > 站长资讯 > 正文页面

帝国cms7.0微博群发插件教程支持28个微博平台支持定时发布

一、说明:xBa网站目录_网站网址收录与提交入口

1、这个函数由微博通wordpress插件修改过来。可以实现群发微博,前提条件是你在各大微博都有注册。可以实现定时发布。xBa网站目录_网站网址收录与提交入口

定时发的时候"发布微博"选空。xBa网站目录_网站网址收录与提交入口

2、升级以后批量更新不会群发微博,修改文章的时候选1为发布微博,0为不发布,定时发布的时候选空。xBa网站目录_网站网址收录与提交入口

3、插件如果是在UTF-8的编码下使用需要改代码,如果单纯复制使用只适合GBK版本。xBa网站目录_网站网址收录与提交入口

二、操作方法:xBa网站目录_网站网址收录与提交入口

1、先新建一个字段,注:初始值是3个值:0为不发布;1为发布;空未审核。xBa网站目录_网站网址收录与提交入口

字段名:"weibo"xBa网站目录_网站网址收录与提交入口

字段标识:"发布微博"xBa网站目录_网站网址收录与提交入口

初始值:xBa网站目录_网站网址收录与提交入口

0:defaultxBa网站目录_网站网址收录与提交入口

1xBa网站目录_网站网址收录与提交入口

(空也就是回车)xBa网站目录_网站网址收录与提交入口

2、以下函数放入userfun.php中 。xBa网站目录_网站网址收录与提交入口

<?phpxBa网站目录_网站网址收录与提交入口

//---------------------------微博发布函数xBa网站目录_网站网址收录与提交入口

function send_to_wbto($id) {xBa网站目录_网站网址收录与提交入口

global $empire,$dbtbpre,$public_r,$navinfor ;xBa网站目录_网站网址收录与提交入口

$rr = $empire->fetch1("select * from {$dbtbpre}ecms_news_data_1,{$dbtbpre}ecms_news where {$dbtbpre}ecms_news_data_1.id = '".$id."' and {$dbtbpre}ecms_news_data_1.id = {$dbtbpre}ecms_news.id limit 1");xBa网站目录_网站网址收录与提交入口

$title = $rr[title] ;xBa网站目录_网站网址收录与提交入口

$content =esub(strip_tags($rr[smalltext]),200);xBa网站目录_网站网址收录与提交入口

$url = $rr[titleurl] ;xBa网站目录_网站网址收录与提交入口

$title1 = $title.'//'.$content.$rr[titleurl];xBa网站目录_网站网址收录与提交入口

preg_match_all('/<img[^>]+src=['"](http[^'"]+)['"].*>/isU',$rr[newstext], $image);//匹配图像格式xBa网站目录_网站网址收录与提交入口

$p_sum = count($image[1]);xBa网站目录_网站网址收录与提交入口

if ($p_sum > 0) {xBa网站目录_网站网址收录与提交入口

$p = $image[1][0];xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

if (!$p) {xBa网站目录_网站网址收录与提交入口

$p = $rr[titlepic];xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

$username = 'xxxxx';xBa网站目录_网站网址收录与提交入口

$password = 'xxxxx';xBa网站目录_网站网址收录与提交入口

$image_url = $p;xBa网站目录_网站网址收录与提交入口

$title1 = iconv('GB2312', 'UTF-8',$title1);xBa网站目录_网站网址收录与提交入口

//将字符串的编码从GB2312转到UTF-8,如果是UTF-8段代码可以注释掉xBa网站目录_网站网址收录与提交入口

$fields = array();xBa网站目录_网站网址收录与提交入口

$fields['source'] = 'wordpress';xBa网站目录_网站网址收录与提交入口

$fields['content'] = urlencode($title1); //xBa网站目录_网站网址收录与提交入口

$ch = curl_init();xBa网站目录_网站网址收录与提交入口

if ($image_url) {xBa网站目录_网站网址收录与提交入口

$fields['imgurl'] =$image_url;xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_URL, "http://wbto.cn/api/upload.json");xBa网站目录_网站网址收录与提交入口

} else {xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_URL, "http://wbto.cn/api/update.json");xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_FAILONERROR, TRUE);xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_RETURNTRANSFER,TRUE);xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_TIMEOUT, 10);xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_POST, TRUE);xBa网站目录_网站网址收录与提交入口

curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);xBa网站目录_网站网址收录与提交入口

$result = curl_exec($ch);xBa网站目录_网站网址收录与提交入口

curl_close($ch);xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

?>xBa网站目录_网站网址收录与提交入口

3、建一个公共变量"weibo_se"xBa网站目录_网站网址收录与提交入口

<?phpxBa网站目录_网站网址收录与提交入口

$rrr2 = $empire->fetch1(" select * from {$dbtbpre}ecms_news where id='".$navinfor['id']."' limit 1 ");xBa网站目录_网站网址收录与提交入口
xBa网站目录_网站网址收录与提交入口
$sql = $empire->query1(" UPDATE {$dbtbpre}ecms_news set weibo='0' where id='".$navinfor['id']."' ");xBa网站目录_网站网址收录与提交入口

if(function_exists('send_to_wbto') ) {xBa网站目录_网站网址收录与提交入口

if($rrr2['weibo']=='1'||$rrr2['weibo']=='' ){xBa网站目录_网站网址收录与提交入口

send_to_wbto($navinfor['id']) ;xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

}xBa网站目录_网站网址收录与提交入口

?>xBa网站目录_网站网址收录与提交入口

4、[!--temp.weibo_se--]放入内容模板中xBa网站目录_网站网址收录与提交入口

 xBa网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章