foreach($_POST as $_key=>$_value) 这句怎么解释啊
foreach($_POST as $_key=>$_value) 这句怎么解释啊
2008-08-22 12:05
程序代码:
foreach($_POST as $key => $value){
$_POST[$key]=htmlspecialchars(trim($_POST[$key]));
}
2008-08-22 12:29