0

描述字段是否支持html标签

$facebook->api("/me/feed", "post", array(
    message => $des,
    picture => $img,
    link => $link,
    caption => $title ,
    description =>$desc
));

我希望有描述为

$desc="hai to <strong>All</strong><br>I am on the nextline";

提前致谢

4

1 回答 1

1

不,facebook 不会解释描述字段中的格式(只是在您发送时显示),并且您不能放置换行符。如果您想为消息添加额外的链接,您可以使用Post 对象的属性字段。

于 2012-07-22T16:46:26.390 回答