开发者

How to handle newlines in Javascript? (from PHP)

I have code like this:

<?php
echo '<script type="text/javascript">';
echo 'var out="'.$txt.'";';
echo '</script>';
?>

Where $txt is a PHP variable that can contain newlines like this:

line1
 line2 hello world

Which would end up like this:

var out="line1
 line2 hello world";

Which will cause开发者_如何学运维 a Javascript error, of course.

What is the best way to handle this? The out variable will be used in a HTML textarea, so I don't think it can be parsed into <br>


$txt = str_replace( array( "\n", "\r" ), array( "\\n", "\\r" ), $txt );

should replace newlines. Don't do it this way.

This is a naïve implementation of string escaping for JavaScript. As you're actually trying to format a string for use in JavaScript, a much better solution would be to use json_encode:

$txt = json_encode($txt);
echo "<script>var out={$txt};</script>";

json_encode will correctly escape special characters in strings, such as quotes, tabs, form feeds, and other special unicode characters. It will also perform all the correct escaping for converting objects, arrays, numbers, and booleans.


you can add a \ at the end of a line to create a multi line String

var out="line1 \
 line2 hello world";


Most of these don't work for me. Normally, I'd use json_encode like

    <?php
        $MyVar = json_encode($MyVar);
    ?>
    <javascript language='javascript'>
        MyVar = <?php echo $MyVar; ?>

But for a quick fix you can just break a line like this: Pay attention to the double quotes.

    <?php
    $MyVar = "line one here
              then line two here


              finally line five here";

    //** OR

    $MyVar = $MyVarA . 
    "

    " 
    . $MyVarB;

    ?>
    <HTML>
    <HEAD>
    <javascript language='javascript'>
    Myvar = "<?php echo $MyVar; ?>";

. . .


You can use str_replace to convert line breaks into a different character (in this case, perhaps a space, but it depends how you want the output to show up)

$out = str_replace("\n", '\n', $in);


$content = str_replace( "\\n", "\\\\\\n", $content );

Result:

var a = "Hello \
World"


I tried this and it worked well.

<?php
    echo '<script type="text/javascript">';
    $txt = "line1 \\n line2 hello world";
    echo 'var out="'.$txt.'";';
    echo '</script>';
?>

I am using PHP 5.3

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜