php开发如何去除转义符

2024年09月10日 建站教程

转义符号(escape characters)常常用于将某些字符转义为其特殊字符的表示形式。例如,将双引号(”)转义为(”)或将反斜杠()转义为(\)等等。那么在php开发如何去除转义符​呢?下面web建站小编给大家简单介绍一下!

方法一:利用正则表达式​​

$str = 'This is 'web' string';
$new_str = preg_replace('/\\(['"\\])/', '$1', $str);

方法二:利用php自带函数stripslashes() 函数

$str = 'This is 'web' string';
$new_str = stripslashes($str);

本文链接:http://so.lmcjl.com/news/12693/

展开阅读全文
相关内容