-1

这是我目前用于代码的内容,但它无法正常工作。

我试过理解文学,但它没有点击

<?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 行中的所有值,并将链接显示为 links ,将 youtube 视频显示为 youtube vids 和图像等等,但它没有转换它。

谁能看到我错过了什么?如果你能解释这棵树是如何发出这个声音的,我也会非常爱你。

4

1 回答 1

0

如果您有一列post_content并且想要获取它,那么不要使用赋值$str = 'post_content';使用:

 $str = $row['post_content'];
于 2012-06-16T19:00:49.300 回答