1

我知道在这个论坛和其他论坛中有多个这样的例子,我都试过了,但都无法工作。我有一个写入 php 文件的 php 脚本,它被加载到一个 php 脚本中。

我的目的是在人们按下“输入”后将自动 br-tags 放入 php-post

<?php
        if ( isset( $_POST[ 'submit' ] ) ) {
        $com  = $_POST['txt'];
        If ($com === "") {
        echo "<font color=red><b>You must write something to post!</font></b>";
        die;
        }
        $time = gmdate("M d Y H:i:s",time()+(2*60*60));
        $com  = $_POST['txt'];
        $count = strlen($com);
        $com = stripslashes($com);
        $breaks = array("<br />","<br>","<br/>");
        $com = str_ireplace($breaks, "\r\n", $com);
        $fp = $file = fopen( "NAME_OF_POST.php", "a");
        Multiple fwrites follows.....
        Multiple fwrites follows.....
        rewind($fp);
        fclose($fp);
        echo '<script type="text/javascript">window.location ="";</script>';
        }
        ?>

它加载在:

<textarea name="txt" id="area" class="typo_vind" placeholder="......" tabindex="1"></textarea>

任何人都知道如何从输入中获取换行符以替换为 br-tags?

提前,比你:)!

4

3 回答 3

3

好吧,php有一个功能:

$yourString = "text
               with
               enters";
$result = nl2br( $yourString );
print $result

// output:
// text<br>with<br>enters

文档

于 2014-10-29T00:08:22.190 回答
1
        $breaks = array("\n");
        $com = str_ireplace($breaks, "<br />", $com);

换个地方就行了:)谢谢大家:)

于 2013-09-20T17:24:28.730 回答
0

我的天啊 !!!!!!!

$breaks = array("\n");
$com = str_ireplace($breaks, "<br />", $com);

经过大量搜索,这项工作很好!!!!!!!♥☻☻☻♥♥♥</p>

于 2019-04-26T11:32:05.473 回答