show/hide this revision's text 2 expanded the function

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 preapreJsStringLiteralprepareJsStringLiteral( $stringLiteral stringLiteral, $mode )
{
    return str_replaceswitch ( "\n", "\\n\"\n\t+\"", str_replace$mode )
    {
    	case ESCAPE_MODE_DOUBLE:
    		$searches = array( '"', "\n" );
    		$replacements = array( '\\"', "\\n\"\n\t+\"" );
    		break;
    	case ESCAPE_MODE_SINGLE:
    		$stringLiteral searches = array( "'", "\n" );
    		$replacements = array( "\\'", "\\n'\n\t+'" );
    		break;
    }
    return str_replace( $searches, $replacements, $stringLiteral );
}

?>

<script type="text/javascript">
    var myvar myvar1 = "<?php echo preapreJsStringLiteralprepareJsStringLiteral( $jsVar 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.

show/hide this revision's text 1

Here's one take

<?php 

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

function preapreJsStringLiteral( $stringLiteral )
{
    return str_replace( "\n", "\\n\"\n\t+\"", str_replace( '"', '\\"', $stringLiteral ) );
}

?>

<script type="text/javascript">
    var myvar = "<?php echo preapreJsStringLiteral( $jsVar ); ?>";
</script>

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