摘要:
parse_str()函数把查询字符串解析到变量中parse_str(string, array);string 规定要解析的字符串array 存储变量的数组名称例子:<?phpparse_str("id=23&name=John");echo $id;<?phpparse_str("id=23&name=John", $arr);print_r($arr); 阅读全文
摘要:
index.html action.php";echo var_dump($_POST)."";echo "-------php://input-------------";echo $raw_post_data ."";?> 阅读全文