PHP에서 query string 쉽게 만드는 방법

sKatjDfyD
1 min readAug 5, 2017

--

as is:

$query_string = $url . ‘?key1=’ . $value1 . ‘&key2=’ . $value2 …

parameter가 늘어날때마다 변수선언과, query string을 만드는 코드는 점점 늘어진다…

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)

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

sKatjDfyD
sKatjDfyD

Written by sKatjDfyD

developer - php, javascript

No responses yet

Write a response