<?php
$newFile = "<?php echo 'quote: "hello world"'; ?>"
file_put_contents('index.php', $newFile);
?>
由于
答案 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。