标签:arp 相互 相互转换 style uil tom ima code enter
$data = array( ‘name‘ => ‘tom‘, ‘sex‘ => 1, ‘channel‘ => ‘ty‘ );
数组转url参数字符串
$queryStr = http_build_query($data); echo query_str;
执行结果:
name=tom&sex=1&channel=ty
url参数字符串转数组
parse_str($query_str,$query_arr); print_r($query_arr);
执行结果:
array( name => tom, sex => 1, channel => ty )
标签:arp 相互 相互转换 style uil tom ima code enter
原文地址:https://www.cnblogs.com/qhorse/p/10070799.html