>  기사  >  백엔드 개발  >  PHP에서 이스케이프 문자를 제거하는 방법

PHP에서 이스케이프 문자를 제거하는 방법

coldplay.xixi
coldplay.xixi원래의
2020-08-15 15:21:257575검색

php去掉转义字符的方法:首先找到需要去除转义字符并打开源代码;然后返回一个去除转义反斜线后的字符串,代码为【string stripslashes ( string $str )】。

PHP에서 이스케이프 문자를 제거하는 방법

php去掉转义字符的方法:

string stripslashes ( string $str )

返回一个去除转义反斜线后的字符串(\' 转换为 ' 等等)。双反斜线(\\)被转换为单个反斜线(\)。

stripslashes() 是非递归的。如果你想要在多维数组中使用该函数,你需要使用递归函数。

<?php
function stripslashes_deep($value)
{
    $value = is_array($value) ?
                array_map(&#39;stripslashes_deep&#39;, $value) :
                stripslashes($value);
    return $value;
}
// 范例
$array = array("f\\&#39;oo", "b\\&#39;ar", array("fo\\&#39;o", "b\\&#39;ar"));
$array = stripslashes_deep($array);
// 输出
print_r($array);
?>

以上输出:

Array
(
    [0] => f&#39;oo
    [1] => b&#39;ar
    [2] => Array
        (
            [0] => fo&#39;o
            [1] => b&#39;ar
        )
)

相关学习推荐:php编程(视频)

위 내용은 PHP에서 이스케이프 문자를 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.