Pass a PHP string to a Javascript variable (including escaping newlines) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:35:02Z http://stackoverflow.com/feeds/question/168214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines 7 Pass a PHP string to a Javascript variable (including escaping newlines) David Laing 2008-10-03T18:27:03Z 2009-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>&lt;script&gt; var myvar = "&lt;?php echo $myVarValue;?&gt;"; &lt;/script&gt; </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#168245 8 Answer by Javier for Pass a PHP string to a Javascript variable (including escaping newlines) Javier 2008-10-03T18:33:50Z 2008-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#168255 0 Answer by Adam for Pass a PHP string to a Javascript variable (including escaping newlines) Adam 2008-10-03T18:35:45Z 2008-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>&lt;script&gt; var myvar = {MyVarValue}; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/168261#168261 4 Answer by Peter Bailey for Pass a PHP string to a Javascript variable (including escaping newlines) Peter Bailey 2008-10-03T18:37:22Z 2008-10-03T18:46:20Z <p>Here's one take</p> <pre><code>&lt;?php $jsVar = &lt;&lt;&lt;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 ); } ?&gt; &lt;script type="text/javascript"&gt; var myvar1 = "&lt;?php echo prepareJsStringLiteral( $jsVar, ESCAPE_MODE_DOUBLE ); ?&gt;"; var myvar2 = '&lt;?php echo prepareJsStringLiteral( $jsVar, ESCAPE_MODE_SINGLE ); ?&gt;'; &lt;/script&gt; </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#168263 1 Answer by Milan Babuškov for Pass a PHP string to a Javascript variable (including escaping newlines) Milan Babuškov 2008-10-03T18:37:24Z 2008-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#168265 1 Answer by Chris MacDonald for Pass a PHP string to a Javascript variable (including escaping newlines) Chris MacDonald 2008-10-03T18:37:46Z 2008-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>* '&amp;' (ampersand) becomes '&amp;amp;' * '"' (double quote) becomes '&amp;quot;' when ENT_NOQUOTES is not set. * ''' (single quote) becomes '&amp;#039;' only when ENT_QUOTES is set. * '&lt;' (less than) becomes '&amp;lt;' * '&gt;' (greater than) becomes '&amp;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#168267 2 Answer by micahwittman for Pass a PHP string to a Javascript variable (including escaping newlines) micahwittman 2008-10-03T18:37:48Z 2008-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#168272 0 Answer by micahwittman for Pass a PHP string to a Javascript variable (including escaping newlines) micahwittman 2008-10-03T18:38:29Z 2008-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#168277 0 Answer by Diodeus for Pass a PHP string to a Javascript variable (including escaping newlines) Diodeus 2008-10-03T18:39:14Z 2008-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#168332 2 Answer by Jacob for Pass a PHP string to a Javascript variable (including escaping newlines) Jacob 2008-10-03T18:50:19Z 2008-10-03T18:50:19Z <p>You could try</p> <pre><code>&lt;script type="text/javascript"&gt; myvar = unescape('&lt;?=rawurlencode($myvar)?&gt;'); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines/169035#169035 11 Answer by bobwienholt for Pass a PHP string to a Javascript variable (including escaping newlines) bobwienholt 2008-10-03T21:49:08Z 2008-10-03T21:49:08Z <p>Expanding on someone else's answer:</p> <pre><code>&lt;script&gt; var myvar = &lt;?= json_encode($myVarValue); ?&gt;; &lt;/script&gt; </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#294586 0 Answer by Toby Allen for Pass a PHP string to a Javascript variable (including escaping newlines) Toby Allen 2008-11-16T23:44:20Z 2008-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('\\'=&gt;'\\\\',"'"=&gt;"\\'",'"'=&gt;'\\"',"\r"=&gt;'\\r',"\n"=&gt;'\\n','&lt;/'=&gt;'&lt;\/')); </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#442949 0 Answer by pr1001 for Pass a PHP string to a Javascript variable (including escaping newlines) pr1001 2009-01-14T13:33:39Z 2009-01-14T13:33:39Z <p>I have had a similar issue and understand that the following is the best solution:</p> <pre><code>&lt;script&gt; var myvar = decodeURIComponent("&lt;?php echo rawurlencode($myVarValue); ?&gt;"); &lt;/script&gt; </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>