to be:
$param = [‘key1’ => ‘value1’, ‘key2’ => ‘value2’];
$query_string = http_build_query($param);
2018.02.13 업데이트:
이미 있는 변수를 query string으로 만드려면 $param이라는 배열을 만들지 않고, compact 함수를 사용해도 됨.
ex) $query_string = http_bulid_query(compact(‘변수명1’, ‘변수명2’, 변수명3'));
알아서 urlencode()도 해준다.
(참고: http://php.net/manual/en/function.http-build-query.php)