Nl2br除<li>标签</li>之外的数据

时间:2011-07-11 15:01:53

标签: php mysql internet-explorer html-lists nl2br

我希望能够从mysql获取html格式的数据,并将新行转换为<br><p>标记。

我能够在CSS中使用white-space: pre-wrap有效地执行此操作,但IE7及以下版本除外。

我的问题是如果我在数据上放置一个条件nl2br(),如果浏览器是&lt; = IE7,那么它会在<li>标签上创建换行符,这些标签已经有换行符,创建了额外的子弹之间的空间。

有更好的方法吗?

我的测试页是:

http://logblog.net84.net/

我的代码是(此时):

...
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Untitled Document</title>
        </head>
        <style>
        p { white-space:pre-wrap;white-space:-moz-pre-wrap;word-wrap:break-word }
        </style>
        <body>
        <?php 
...
        $conn = mysql_connect($host, $user, $pw) or die('Error connecting to mysql');
        mysql_select_db($db);
        mysql_set_charset('utf8', $conn);
        $result = mysql_query("SELECT * FROM wp_posts WHERE post_status='publish' AND post_type='post'");

        while($row = mysql_fetch_array($result))
          {
          echo '<h2>'.$row['post_title'].'</h2>'; 
          echo '<p>'.$row['post_content'].'</p>';
          }
    ...

1 个答案:

答案 0 :(得分:2)

您是否正在尝试绕过WordPress的自动段落替换?如果是这样,您可以使用内置函数 - http://codex.wordpress.org/Function_Reference/wpautop

如果不是这样,那么你可以更具体一点 - 看起来你的测试页链接没有在帖子上传出来了吗?