Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已解决] QQ互联发帖同步和分享到腾讯微博默认文字的代码分析

[复制链接]
otherbank 发表于 2012-10-31 13:40:33 | 显示全部楼层 |阅读模式
本帖最后由 otherbank 于 2012-10-31 18:23 编辑

一、发帖同步到微博时格式:

发帖时的默认文字所在的代码分析
找到文件source/plugin/qqconnect/connect_feed.php 第77行
  1.   $_t_content = lang('plugin/qqconnect', 'connect_feed_iam');
  2.   $_t_content .= '#' . cutstr($_G['setting']['bbname'], 20,'') . '#';
  3.   $_t_content .= lang('plugin/qqconnect', 'connect_feed_published_thread', array('subject' => cutstr($thread['subject'], 120)));
  4.   $_t_content .= cutstr(strip_tags($html_content), 80);
  5.   $_t_content .= ' ' . $url;
复制代码
详解如下
  1. $_t_content = lang('plugin/qqconnect', 'connect_feed_iam');
  2. //'connect_feed_iam' ='我在';修改要到\source\plugin\qqconnect\discuz_plugin_qqconnect.xml134行修改;
  3. $_t_content .= '#' . cutstr($_G['setting']['bbname'], 20,'') . '#';
  4. //#网站名字#;修改要到 后台——》全局——》站点名称修改;
  5. $_t_content .= lang('plugin/qqconnect', 'connect_feed_published_thread', array('subject' => cutstr($thread['subject'], 120)));
  6. //'connect_feed_published_thread' =发表了,修改要到\source\plugin\qqconnect\discuz_plugin_qqconnect.xml135行修改; 后面的120是截取的标题的字数,可以根据自己需要设置;
  7. $_t_content .= cutstr(strip_tags($html_content), 80);
  8. //截取的简介内容,可以根据自己需要修改截取的内容简介数;
  9. $_t_content .= ' ' . $url;
  10. //$url是网址,后面可以添加自己需要的文字,修改方法是:$_t_content .= ' ' . $url.'你加的文字';
复制代码
二、回帖同步微博的格式:

回帖同步微博时的默认文字所在的代码分析
找到文件source/plugin/qqconnect/connect_feed.php 第226行
  1. $_t_content = lang('plugin/qqconnect', 'connect_feed_iam');               
  2. $_t_content .= '#' . cutstr($_G['setting']['bbname'], 20,'') . '#';  
  3. $_t_content .= lang('plugin/qqconnect', 'connect_feed_published_post', array('subject' => cutstr($thread['subject'], 120)));              
  4. $_t_content .= cutstr(strip_tags($html_content), 80);               
  5. $_t_content .= ' ' . $url;
复制代码
详解如下
  1. $_t_content = lang('plugin/qqconnect', 'connect_feed_iam');
  2. // 'connect_feed_iam' ='我在';修改要到\source\plugin\qqconnect\discuz_plugin_qqconnect.xml134行修改;
  3. $_t_content .= '#' . cutstr($_G['setting']['bbname'], 20,'') . '#';
  4. //#网站名字#;修改要到 后台——》全局——》站点名称修改;
  5. $_t_content .= lang('plugin/qqconnect', 'connect_feed_published_post', array('subject' => cutstr($thread['subject'], 120)));
  6. // 'connect_feed_published_thread' =参与了xx的讨论  修改要到\source\plugin\qqconnect\discuz_plugin_qqconnect.xml135行修改; 后面的120是截取的标题的字数,可以根据自己需要设置;
  7. $_t_content .= cutstr(strip_tags($html_content), 80);
  8. //截取的简介内容,可以根据自己需要修改截取的内容简介数;
  9. $_t_content .= ' ' . $url;
  10. //$url是网址,后面可以添加自己需要的文字,修改方法是:$_t_content .= ' ' . $url.'你加的文字';
复制代码
三、分享到腾讯微博的格式:

分享到腾讯微博默认文字对应的代码分析:
找到文件source/plugin/qqconnect/spacecp.inc.php 的75行:
  1. $share_message = lang('plugin/qqconnect', 'connect_spacecp_share_a_post', array('bbname' => cutstr($_G['setting']['bbname'], 20,''), 'subject' => cutstr($thread['subject'], 120), 'message' => cutstr(strip_tags(str_replace(' ', ' ', $html_content)), 80)));
  2. $share_message = str_replace(array('\'', "\r\n", "\r", "\n"), array('"', '', '', ''), $share_message);
复制代码
代码详细分析:
  1. $share_message = lang('plugin/qqconnect', 'connect_spacecp_share_a_post', array('bbname' => cutstr($_G['setting']['bbname'], 20,''), 'subject' => cutstr($thread['subject'], 120), 'message' => cutstr(strip_tags(str_replace(' ', ' ', $html_content)), 80)));
  2. //'connect_spacecp_share_a_post' ='分享一个好帖#{bbname}#《{subject}》:{message}',详情修改是要到\source\plugin\qqconnect\discuz_plugin_qqconnect.xml136行修改; {bbname}#《{subject}》:{message} 分别是网站名称,帖子主题名字,内容简介;
  3. $share_message = str_replace(array('\'', "\r\n", "\r", "\n"), array('"', '', '', ''), $share_message);
  4. //对一些字符格式过滤,如果要添加文字可以这样修改 $share_message改为$share_message.'你要的文字'。
复制代码
感谢 64243354 对这个问题的提出的站长需求,并且 64243354  已对QQ互联发帖同步和分享到腾讯微博默认文字进行了修改,修改方法见原帖:http://bbs.xiaoyao-heroes.cn/thread-3313-1-1.html

OK!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

评分

1

查看全部评分

腐朽的木头 发表于 2012-10-31 13:45:32 | 显示全部楼层
呵呵 这个很需要的 {:soso_e113:}
回复

使用道具 举报

moaquito 发表于 2012-10-31 13:46:24 | 显示全部楼层
这个很好啊,想了很久了,支持
回复

使用道具 举报

1314学习网 发表于 2012-10-31 15:05:57 | 显示全部楼层
这个很好啊,想了很久了,支持
回复

使用道具 举报

maoqoo 发表于 2012-10-31 15:35:29 | 显示全部楼层
学习了~
回复

使用道具 举报

64243354 发表于 2012-10-31 17:03:02 | 显示全部楼层
六子來支持了 比我的修改更人性化喔 哈哈 多了很多注釋 對新手很大~
回复

使用道具 举报

liqu12511 发表于 2012-10-31 19:19:15 | 显示全部楼层
真的很不错 必须支持
回复

使用道具 举报

pcyxr 发表于 2012-11-9 09:15:11 | 显示全部楼层
可否在后台直接设置啊,感觉现在分享到微博的样式可以说非常难看
回复

使用道具 举报

misskao 发表于 2012-11-9 10:14:29 | 显示全部楼层
很棒 晚點來研究
回复

使用道具 举报

353062992 发表于 2012-11-9 11:21:16 | 显示全部楼层
收藏起来,
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 13:01 , Processed in 0.040937 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表