Home >php教程 >php手册 >支持数组的ADDSLASHES的php函数

支持数组的ADDSLASHES的php函数

WBOY
WBOYOriginal
2016-06-06 20:33:01929browse

支持数组的ADDSLASHES

代码如下:
//SQL ADDSLASHES
function saddslashes($string) {
if(is_array($string)) {
foreach($string as $key => $val) {
$string[$key] = saddslashes($val);
}
} else {
$string = addslashes($string);
}
return $string;
}
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