vote up 6 vote down star
4

What is the easiest way to encode a PHP string for output to a Javascript variable?

I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a Javascript variable.

Normally, I would just construct my Javascript in a PHP file, ala:

<script>
  var myvar = "<?php echo $myVarValue;?>";
</script>

However, this doesn't work when $myVarValue contains quotes or newlines.

flag

The answer with json_encode() by bobwienholt should probably be marked as correct as it is easiest and most reliable. – too much php Dec 23 '08 at 0:34

13 Answers

vote up 9 vote down check

Expanding on someone else's answer:

<script>
  var myvar = <?= json_encode($myVarValue); ?>;
</script>

This does require PHP 5.2.0 or greater.

link|flag
If you use UTF-8 that's the best solution by far. – porneL Oct 13 '08 at 23:02
yep, that's exactly how i do it. – Javier Feb 18 at 3:56
vote up 7 vote down

encode it with JSON

link|flag
Probably the easiest way to get this to work 100% of the time. There are too many cases to cover otherwise. – Abyss Knight Oct 3 '08 at 18:42
Json only works with UTF-8 Charset. So it is not a solution if your website is working in a non UTF-8 Encoding – Nir Apr 27 at 12:06
@nir: on one hand, i don't know any reason to use any other encoding, on the other hand, a full JSON encoder also manages any needed charset conversion – Javier Apr 28 at 2:03
vote up 0 vote down

If you use a templating engine to construct your HTML then you can fill it with what ever you want!

Check out XTemplates: http://www.phpxtemplate.org It's a nice, open source, lightweight, template engine.

Your HTML/JS there would look like this:

<script>
    var myvar = {MyVarValue};
</script>
link|flag
vote up 5 vote down

Here's one take

<?php 

$jsVar = <<<JS
This is a "sample" javascript variable.
It's purpose is simple.
JS;

define( "ESCAPE_MODE_DOUBLE", 1 );
define( "ESCAPE_MODE_SINGLE", 2 );

function prepareJsStringLiteral( $stringLiteral, $mode )
{
    switch ( $mode )
    {
    	case ESCAPE_MODE_DOUBLE:
    		$searches = array( '"', "\n" );
    		$replacements = array( '\\"', "\\n\"\n\t+\"" );
    		break;
    	case ESCAPE_MODE_SINGLE:
    		$searches = array( "'", "\n" );
    		$replacements = array( "\\'", "\\n'\n\t+'" );
    		break;
    }
    return str_replace( $searches, $replacements, $stringLiteral );
}

?>

<script type="text/javascript">
    var myvar1 = "<?php echo prepareJsStringLiteral( $jsVar, ESCAPE_MODE_DOUBLE ); ?>";
    var myvar2 = '<?php echo prepareJsStringLiteral( $jsVar, ESCAPE_MODE_SINGLE ); ?>';
</script>

You could even add a 2nd argument to the function to handle the different delimiters (" vs ')

EDIT: I went ahead and expanded the function to handle both delimiting options.

link|flag
why not always escape both quote types? – Mr. Shiny and New Oct 3 '08 at 18:50
You could - this way, though, it reduces the potential amount of noise in the output, if even only by a little bit. – Peter Bailey Oct 3 '08 at 18:54
vote up 1 vote down

Take a look at addcslashes function.

link|flag
vote up 1 vote down

htmlspecialchars

Description

string htmlspecialchars ( string $string [, int $quote_style [, string $charset [, bool $double_encode ]]] )

Certain characters have special significance in HTML, and should be represented by HTML entities if they are to preserve their meanings. This function returns a string with some of these conversions made; the translations made are those most useful for everyday web programming. If you require all HTML character entities to be translated, use htmlentities() instead.

This function is useful in preventing user-supplied text from containing HTML markup, such as in a message board or guest book application.

The translations performed are:

* '&' (ampersand) becomes '&amp;'
* '"' (double quote) becomes '&quot;' when ENT_NOQUOTES is not set.
* ''' (single quote) becomes '&#039;' only when ENT_QUOTES is set.
* '<' (less than) becomes '&lt;'
* '>' (greater than) becomes '&gt;'

http://ca.php.net/htmlspecialchars

link|flag
This will only be the right solution if the content of the JS variable is actually supposed to be HTML, where a string token like &amp; has meaning. Otherwise, it might be best to not convert them to entities. – Peter Bailey Oct 3 '08 at 18:48
vote up 2 vote down

Explanation and online testing of escaping client-side and server-side (Javascript / PHP):

JavaScript: Escaping Special Characters

link|flag
Actually the related the-art-of-web.com/php/javascript-escape/… is closer to my original requirements. <script type="text/javascript"> alert("<?php echo preg_replace("/\r?\n/", "\\n", addslashes($message)); ?>"); </script> – David Laing Oct 4 '08 at 9:27
vote up 0 vote down
function escapeJavaScriptText($string)
{
    return str_replace("\n", '\n', str_replace('"', '\"', addcslashes(str_replace("\r", '', (string)$string), "\0..\37'\\")));
}
link|flag
vote up 0 vote down

You can insert it into a hidden DIV, then assign the innerHTML of the DIV to your JavaScript variable. You don't have to worry about escaping anything. Just be sure not to put broken HTML in there.

link|flag
"not to put broken HTML in there", that means escaping 'HTML entities' (at the very least '<' and '&') – Javier Feb 18 at 3:55
No, just don't close your container DIV prematurely. – Diodeus Feb 18 at 21:30
vote up 2 vote down

You could try

<script type="text/javascript">
    myvar = unescape('<?=rawurlencode($myvar)?>');
</script>
link|flag
vote up 0 vote down

I found a bit of code on the web that seems to do this really easily.

return strtr($string, array('\\'=>'\\\\',"'"=>"\\'",'"'=>'\\"',"\r"=>'\\r',"\n"=>'\\n','</'=>'<\/'));

Does the trick for me.

link|flag
vote up 0 vote down

I have had a similar issue and understand that the following is the best solution:

<script>
    var myvar = decodeURIComponent("<?php echo rawurlencode($myVarValue); ?>");
</script>

However, the link that micahwittman posted suggests that there are some minor encoding differences. PHP's rawurlencode() function is supposed to comply with RFC 1738, while there appear to have been no such effort with Javascript's decodeURIComponent().

link|flag
vote up 0 vote down

vai te foder nao sabes programar nao inventes. olha que este heim

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.