我目前正在为我的网站使用facebook 即时文章,但未显示后期图像,因为<figure>
代表图像的元素必须独立包含在文章正文中,而不是包含在<p>
元素中。
$message="[img]http://img.loadedcamp.net/hfjfjd.jpg[/img]
This is the news and it is here.
[img]http://img.loadedcamp.net/YTgxbj.jpg[/img]
The new is posted by an author";
这是 nl2p() 函数
function nl2p($string, $only_if_no_html = FALSE) {
$replace = TRUE;
if ($only_if_no_html) {
$str2 = strip_tags($string);
if ($str2 != $string) {
$replace = FALSE;
}
}
if ($replace) {
return
'<p>'
.preg_replace('#(<br\s*?/?>\s*?){2,}#', '</p>'."\n".'<p>', nl2br($string))
.'</p>';
}
}
此图像 bbcode 转换器;
function savedimg($string) {
$string = preg_replace("#\[img\](.*?)\[/img\]#is", '<figure> <img src="$1"/> </figure>', $string);
return $string;
}
echo nl2p(savedimg($message));
输出了这个;
<p><figure> <img src="http://img.loadedcamp.net/hfjfjd.jpg" /> </figure></p>
<p>This is the news and it is here.</p>
<p><figure> <img src="http://img.loadedcamp.net/YTgxbj.jpg" /> </figure></p>
<p>The new is posted by an author</p>
我希望p
元素不在图像之间。请帮助伙计们!
这是我期望的输出;
<figure> <img src="http://img.loadedcamp.net/hfjfjd.jpg" /> </figure>
<p>This is the news and it is here.</p>
<figure> <img src="http://img.loadedcamp.net/YTgxbj.jpg" /> </figure>
<p>The new is posted by an author</p>