How do I use inverted commas in the echo function in PHP?
How do I use inverted commas in the echo function i开发者_Go百科n PHP?
echo "<script type="text/javascript">";
doesnt work well.
Thank you!
Escape them with backslashes:
echo "<script type=\"text/javascript\">";
Alternatively, you can use a different set of quotes:
echo '<script type="text/javascript">';
Or, HEREDOC syntax:
echo <<<END
<script type="text/javascript">;
END;
echo "<script type=\"text/javascript\">";
精彩评论