以下是我目前正在使用的代码,但它无法正常工作。
我尝试了解文学,而不是点击
<?php
$con = mysql_connect("localhost","----","----");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("----", $con);
$result = mysql_query("SELECT * FROM posts");
while($row = mysql_fetch_array($result))
{
$str = 'post_content';
$str = preg_replace_callback('#(?:https?://\S+)|(?:www.\S+)|(?:\S+\.\S+)#', function($arr)
{
if(strpos($arr[0], 'http://') !== 0)
{
$arr[0] = 'http://' . $arr[0];
}
$url = parse_url($arr[0]);
// images
if(preg_match('#\.(png|jpg|gif)$#', $url['path']))
{
return '<img src="'. $arr[0] . '" />';
}
// youtube
if(in_array($url['host'], array('www.youtube.com', 'youtube.com'))
&& $url['path'] == '/watch'
&& isset($url['query']))
{
parse_str($url['query'], $query);
return sprintf('<iframe class="embedded-video" src="http://www.youtube.com/embed/%s" allowfullscreen></iframe>', $query['v']);
}
//links
return sprintf('<a href="%1$s">%1$s</a>', $arr[0]);
}, $str);
echo $str;
echo "<br />";
}
mysql_close($con);
?>
我知道问题出在$ str ='post_content';显然它只是在mysql中显示每行的一行,只有post_content。
我想要它做的是显示MySQL中post_content行的所有值,并将链接显示为链接,youtube视频显示为youtube vids和图像等等,但它不会转换它。
谁能看到我错过的东西?如果你能解释它如何引出它的树,我会非常爱你。
答案 0 :(得分:0)
如果您有一列post_content
并希望获取它,那么请使用<{1}}而不是使用作业{/ 1}
$str = 'post_content';