http_build_query()函數的做用是使用給出的關聯(或下標)數組生成一個通過 URL-encode 的請求字符串。數組
寫法格式:http_build_query ( mixed $query_data [, string $numeric_prefix [, string $arg_separator [, int $enc_type = PHP_QUERY_RFC1738 ]]] )函數
打個比方:$data = array("name"=>"callback" , "value"=>"test");ui
$rescult = http_build_query($data);code
咱們輸出下$rescutl能夠獲得:字符串
name=callback&value=testget
這個有什麼用呢,這是模擬http請求的,把獲得的數據data經過函數URL-encode,通常是用在回調。博客
博客原文:http_build_query()函數使用方法string