Pass a PHP string to a Javascript variable (including escaping newlines) - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:35:02Zhttp://stackoverflow.com/feeds/question/168214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines7Pass a PHP string to a Javascript variable (including escaping newlines)David Laing2008-10-03T18:27:03Z2009-12-09T10:52:38Z
<p>What is the easiest way to encode a PHP string for output to a Javascript variable?</p>
<p>I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a Javascript variable.</p>
<p>Normally, I would just construct my Javascript in a PHP file, ala:</p>
<pre><code><script>
var myvar = "<?php echo $myVarValue;?>";
</script>
</code></pre>
<p>However, this doesn't work when $myVarValue contains quotes or newlines.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168245#1682458Answer by Javier for Pass a PHP string to a Javascript variable (including escaping newlines)Javier2008-10-03T18:33:50Z2008-10-03T18:33:50Z<p>encode it with JSON</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168255#1682550Answer by Adam for Pass a PHP string to a Javascript variable (including escaping newlines)Adam2008-10-03T18:35:45Z2008-10-03T18:35:45Z<p>If you use a templating engine to construct your HTML then you can fill it with what ever you want!</p>
<p>Check out XTemplates: <a href="http://www.phpxtemplate.org" rel="nofollow">http://www.phpxtemplate.org</a>
It's a nice, open source, lightweight, template engine.</p>
<p>Your HTML/JS there would look like this:</p>
<pre><code><script>
var myvar = {MyVarValue};
</script>
</code></pre>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168261#1682614Answer by Peter Bailey for Pass a PHP string to a Javascript variable (including escaping newlines)Peter Bailey2008-10-03T18:37:22Z2008-10-03T18:46:20Z<p>Here's one take</p>
<pre><code><?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>
</code></pre>
<p>You could even add a 2nd argument to the function to handle the different delimiters (" vs ')</p>
<p><strong>EDIT:</strong> I went ahead and expanded the function to handle both delimiting options.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168263#1682631Answer by Milan Babuškov for Pass a PHP string to a Javascript variable (including escaping newlines)Milan Babuškov2008-10-03T18:37:24Z2008-10-03T18:37:24Z<p>Take a look at <a href="http://www.php.net/addcslashes" rel="nofollow">addcslashes</a> function.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168265#1682651Answer by Chris MacDonald for Pass a PHP string to a Javascript variable (including escaping newlines)Chris MacDonald2008-10-03T18:37:46Z2008-10-03T18:37:46Z<p>htmlspecialchars</p>
<p>Description</p>
<pre><code>string htmlspecialchars ( string $string [, int $quote_style [, string $charset [, bool $double_encode ]]] )
</code></pre>
<p>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.</p>
<p>This function is useful in preventing user-supplied text from containing HTML markup, such as in a message board or guest book application.</p>
<p>The translations performed are:</p>
<pre><code>* '&' (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;'
</code></pre>
<p><a href="http://ca.php.net/htmlspecialchars" rel="nofollow">http://ca.php.net/htmlspecialchars</a></p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168267#1682672Answer by micahwittman for Pass a PHP string to a Javascript variable (including escaping newlines)micahwittman2008-10-03T18:37:48Z2008-10-03T18:37:48Z<p>Explanation and online testing of escaping client-side and server-side (Javascript / PHP):</p>
<blockquote>
<p><a href="http://www.the-art-of-web.com/javascript/escape/" rel="nofollow">JavaScript: Escaping Special Characters</a></p>
</blockquote>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168272#1682720Answer by micahwittman for Pass a PHP string to a Javascript variable (including escaping newlines)micahwittman2008-10-03T18:38:29Z2008-10-03T18:38:29Z<pre><code>function escapeJavaScriptText($string)
{
return str_replace("\n", '\n', str_replace('"', '\"', addcslashes(str_replace("\r", '', (string)$string), "\0..\37'\\")));
}
</code></pre>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168277#1682770Answer by Diodeus for Pass a PHP string to a Javascript variable (including escaping newlines)Diodeus2008-10-03T18:39:14Z2008-10-03T18:39:14Z<p>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.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168332#1683322Answer by Jacob for Pass a PHP string to a Javascript variable (including escaping newlines)Jacob2008-10-03T18:50:19Z2008-10-03T18:50:19Z<p>You could try</p>
<pre><code><script type="text/javascript">
myvar = unescape('<?=rawurlencode($myvar)?>');
</script>
</code></pre>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/169035#16903511Answer by bobwienholt for Pass a PHP string to a Javascript variable (including escaping newlines)bobwienholt2008-10-03T21:49:08Z2008-10-03T21:49:08Z<p>Expanding on someone else's answer:</p>
<pre><code><script>
var myvar = <?= json_encode($myVarValue); ?>;
</script>
</code></pre>
<p>This does require PHP 5.2.0 or greater.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/294586#2945860Answer by Toby Allen for Pass a PHP string to a Javascript variable (including escaping newlines)Toby Allen2008-11-16T23:44:20Z2008-11-16T23:44:20Z<p>I found a bit of code on the web that seems to do this really easily.</p>
<pre><code>return strtr($string, array('\\'=>'\\\\',"'"=>"\\'",'"'=>'\\"',"\r"=>'\\r',"\n"=>'\\n','</'=>'<\/'));
</code></pre>
<p>Does the trick for me.</p>
http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/442949#4429490Answer by pr1001 for Pass a PHP string to a Javascript variable (including escaping newlines)pr10012009-01-14T13:33:39Z2009-01-14T13:33:39Z<p>I have had a similar issue and understand that the following is the best solution:</p>
<pre><code><script>
var myvar = decodeURIComponent("<?php echo rawurlencode($myVarValue); ?>");
</script>
</code></pre>
<p>However, the <a href="http://www.the-art-of-web.com/javascript/escape/" rel="nofollow">link</a> that micahwittman posted suggests that there are some minor encoding differences. PHP's <code>rawurlencode()</code> function is supposed to comply with <a href="http://www.faqs.org/rfcs/rfc1738" rel="nofollow">RFC 1738</a>, while there appear to have been no such effort with Javascript's <code>decodeURIComponent()</code>.</p>