http_build_query引數拼接url

ZVan發表於2018-11-27

http_build_query — 生成 URL-encode 之後的請求字串

<?php
$data = array('foo'=>'bar',
              'baz'=>'boom',
              'cow'=>'milk',
              'php'=>'hypertext processor');
              
echo http_build_query($data); // foo=bar&baz=boom&cow=milk&php=hypertext+processor
?> 
複製程式碼

相關文章