PHP file_put_contents或fwrite'和“字符

时间:2011-04-13 21:50:17

标签: php file-io

嘿伙计们, 当我通过PHP进行操作时,如何编写“和'字符 例如

<?php
$newFile = "<?php echo 'quote: "hello world"'; ?>"
file_put_contents('index.php', $newFile);
 ?>

由于

3 个答案:

答案 0 :(得分:2)

\用于“逃避”事物。

$newfile = "<?php echo 'quote: \"hello world\"'; ?>";

答案 1 :(得分:1)

您只能在字符串文字中使用一种引号。如果另一个引用要出现在文字中,则需要通过\

进行转义
$newFile = "<?php echo 'quote: \"hello world\"'; ?>";
file_put_contents('index.php', $newFile);

答案 2 :(得分:0)

$newFile = "<?php echo 'quote: \"hello world\"'; ?>"

阅读此Strings manual