本文介绍了如何避免已经在PHP中转义单引号的反斜杠?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我有一个脚本来创建一个脚本,然后可以创建另一个脚本。见下文,我写了(我如何逃避这个),我不知道该怎么做。
So I have a script that creates a script that can then create another script. See below, I have written (how do I escape this) where I'm not sure what to do.
fwrite($file, '
fwrite($file, \'
fwrite($file, (how do i escape this)\' (how do i escape this)\'
\'
');
fclose;
我真的希望对某人有意义!
I really hope that makes sense to someone!
推荐答案
要转义一个反斜杠,添加另一个:
To escape a backslash add another one:
echo " Escape \\";
这篇关于如何避免已经在PHP中转义单引号的反斜杠?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!