我在使用字符串
替换\时遇到问题 <?php $postlink = str_replace( "\" , '', $postlink); ?>
该行的错误Dreamweaver告诉我错误的行
答案 0 :(得分:1)
\
是您需要使用\\
<?php
$postlink = str_replace( "\\" , '', $postlink);
?>
您还可以使用stripslashes()
删除斜杠,为什么str_replace()
?如果您只有反斜杠,请使用stripslashes()
。
示例:强>
echo stripcslashes("it\'s working day!"); //it's working day!