WordPress功能函数addslashes_gpc()添加斜杠来转义字符串。

addslashes_gpc( string $gpc )

描述:

如果设置了magic_quotes_gpc,斜杠将首先被删除,请参阅https://www.php.net/magic_quotes了解更多细节。

参数:

$gpc

(string) (必需) 从HTTP请求数据返回的字符串。

返回:

(string) 返回一个用斜杠转义的字符串。

来源:

文件: wp-includes/formatting.php

function addslashes_gpc( $gpc ) {

return wp_slash( $gpc );

}

更新版本:

WordPress功能函数addslashes_gpc() (https://www.wpzt.net/) WordPress开发教程 第1张