摘要: parse_str ($str, array &$arr = null) //Parses the string into variables eg:$str = "first=value&arr[]=foo+bar&arr[]=baz"; parse_str($str, $output); echo $output['first']; // value ... 阅读全文
posted @ 2018-10-20 22:25 liqinggai 阅读(148) 评论(0) 推荐(0) 编辑