PHP的http_build_query() 方法,数组里面的bool类型会被转化为 1 和 0.

$params = [
'a' => 'hello',
'b' => true,
'c' => false,
];

echo http_build_query($params);

输出:a=hello&b=1&c=0

  

posted @ 2022-03-23 15:59  浮尘微光  阅读(145)  评论(0编辑  收藏  举报