将新行从PHP替换为JavaScript

时间:2012-06-07 16:09:57

标签: php javascript textbox compatibility

情况很简单:

我发布了一个带有textarea的纯HTML表单。然后,在PHP中,我根据表单的内容注册一个JavaScript函数。

使用以下代码完成:

$js = sprintf("window.parent.doSomething('%s');", $this->textarea->getValue());

就像魅力一样,直到我尝试处理换行符。我需要用char 13替换换行符(我相信),但我无法找到一个有效的解决方案。我尝试了以下方法:

$textarea = str_replace("\n", chr(13), $this->textarea->getValue());

以下内容:

$js = sprintf("window.parent.doSomething('%s');", "'+String.fromCharCode(13)+'", $this->textarea->getValue());

有没有人知道如何正确处理这些新行?

4 个答案:

答案 0 :(得分:3)

你几乎就在那里,你只是忘了实际取代换行符。

这应该可以解决问题:

$js = sprintf("window.parent.doSomething('%s');"
    , preg_replace(
              '#\r?\n#'
            , '" +  String.fromCharCode(13) + "'
            , $this->textarea->getValue()
);

答案 1 :(得分:1)

你打算做的是:

str_replace("\n", '\n', $this->textarea->getValue());

用文字字符串'\n'替换所有换行符。


但是,您最好将其编码为JSON:

$js = sprintf(
    "window.parent.doSomething('%s');",
    json_encode($this->textarea->getValue())
);

这也将修复报价。

答案 2 :(得分:1)

我们的代码库中的其他地方已经解决了您的问题...

取自我们的WebApplication.php文件:

    /**
     * Log a message to the javascript console
     *
     * @param $msg
     */
    public function logToConsole($msg)
    {
        if (defined('CONSOLE_LOGGING_ENABLED') && CONSOLE_LOGGING_ENABLED)
        {
            static $last = null;
            static $first = null;
            static $inGroup = false;
            static $count = 0;

            $decimals = 5;

            if ($first == null)
            {
                $first          = microtime(true);
                $timeSinceFirst = str_repeat(' ', $decimals) . ' 0';
            }

            $timeSinceFirst = !isset($timeSinceFirst)
                ? number_format(microtime(true) - $first, $decimals, '.', ' ')
                : $timeSinceFirst;

            $timeSinceLast = $last === null
                ? str_repeat(' ', $decimals) . ' 0'
                : number_format(microtime(true) - $last, $decimals, '.', ' ');

            $args = func_get_args();
            if (count($args) > 1)
            {
                $msg = call_user_func_array('sprintf', $args);
            }
            $this->registerStartupScript(
                sprintf("console.log('%s');", 
                    sprintf('[%s][%s] ', $timeSinceFirst, $timeSinceLast) .
                    str_replace("\n", "'+String.fromCharCode(13)+'", addslashes($msg))));

            $last = microtime(true);
        }
    }

您感兴趣的是:

str_replace("\n", "'+String.fromCharCode(13)+'", addslashes($msg))

请注意,在您的问题“sprintf中,您忘记了str_replace ...

答案 3 :(得分:-1)

使用

str_replace(array("\n\r", "\n", "\r"), char(13), $this->textarea->getValue());

这应该用char(13)

替换字符串中的所有新行