'">
时间:2021-07-01 10:21:17 帮助过:1人阅读
本文介绍下,php利用递归实现使用反斜线引用字符串的方法,通过一个例子,帮助大家的理解。
php addslashes 递归反斜线引用字符串,代码如下: '"; $_GET['STR1'] = 'fanglor " is \ a boy >'; echo '当前get_magic_quotes_gpc为 '.get_magic_quotes_gpc(); echo " 打印结果: 当前get_magic_quotes_gpc为 0 array(1) { ["STR"]=> string(30) "\'fanglor \' is \\ a boy >\'" } array(1) { ["STR1"]=> string(26) "fanglor \" is \\ a boy >" } |