使用例子:
[color=SandyBrown]$feed = array();
$feed['icon'] = 'thread';
$feed['title_template'] = '<b>{username} 在论坛发起了新话题</b>';
$feed['title_data'] = array('username'=>$discuz_user);
$feed['body_template'] = '<b>{subject}</b><br>{message}';
$feed['body_data'] = array(
'subject' => "<a href=\"viewthread.php?tid=$tid\">$subject</a>",
'message' => cutstr(strip_tags(preg_replace("/\[.+?\]/is", '', $message)), 150)
);
$feed['images'][] = array(
'url'=>'https://discuz.dismall.com/logo.gif',
'link'=> 'https://discuz.dismall.com/'
);
$feed['images'][] = array(
'url'=>'http://www.comenz.com/logo.gif',
'link'=> 'http://www.comenz.com/'
);
include_once(DISCUZ_ROOT.'./uc_client/client.php');
uc_feed_add($feed['icon'], $discuz_uid, $discuz_user, $feed['title_template'], $feed['title_data'], $feed['body_template'], $feed['body_data'], '', '', $feed['images']);
在程序中调用该接口 一直执行出错。
没法插入数据。uc_feedadd 是怎样调用的呢?
采用此方法 可以插入数据
feed_add($fs['icon'], $fs['title_template'], $fs['title_data'], $fs['body_template'], $fs['body_data'], $fs['body_general'],$fs['images'], $fs['image_links']);
小弟在此求助.......... |