LoginSignup
6
6

More than 5 years have passed since last update.

PHPでquery stringの組み立て

Last updated at Posted at 2016-06-02

query stringの組み立てをforeachを使って、自前でやってるソースを見かけた。
そんなに、一緒懸命やらなくてもそういう関数用意されてるよ!ってことでメモする。

http_build_query

<?php
$queryArray = [
  "category" => "pro",
  "type" => 0,
  "page" => 1
];

$queryString = http_build_query($queryArray, '', '&');

echo $queryString;
// => category=pro&type=0&page=1
6
6
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6