Home  >  Article  >  Backend Development  >  VAT accounting processing for small-scale taxpayers. Function code for processing PHP automatic backslashes

VAT accounting processing for small-scale taxpayers. Function code for processing PHP automatic backslashes

WBOY
WBOYOriginal
2016-07-29 08:41:39916browse

Copy code The code is as follows:


//Handle php automatic backslashes
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);
}

The above introduces the function code for handling the VAT accounting of small-scale taxpayers and processing PHP automatic backslashes, including the content of VAT accounting processing for small-scale taxpayers. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn