Heim >Backend-Entwicklung >PHP-Tutorial >小规模纳税人增值税账务处理 处理php自动反斜杠的函数代码

小规模纳税人增值税账务处理 处理php自动反斜杠的函数代码

WBOY
WBOYOriginal
2016-07-29 08:41:39933Durchsuche

复制代码 代码如下:


//处理php自动反斜杠
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}

以上就介绍了小规模纳税人增值税账务处理 处理php自动反斜杠的函数代码,包括了小规模纳税人增值税账务处理方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn