Home > Article > Backend Development > How to convert the browser address bar string into an array in PHP
The method for php to convert the browser address bar string into an array is to use the parse_str() function, such as [parse_str($query_str,$query_arr);].
The operating environment of this article: windows10 system, php 7, thinkpad t480 computer.
It is not difficult to convert strings and arrays in the browser address bar in PHP. As long as we make reasonable use of the functions provided by PHP, we can easily achieve it. Let’s take a look together below.
$data = array( 'name' => 'tom', 'sex' => 1, 'channel' => 'ty' );
Convert array to url parameter string
$queryStr = http_build_query($data); echo query_str;
Execution result:
name=tom&sex=1&channel=ty
Convert url parameter string to array
parse_str($query_str,$query_arr); print_r($query_arr);
Execution Result:
array( name => tom, sex => 1, channel => ty )
Recommended learning: php training
The above is the detailed content of How to convert the browser address bar string into an array in PHP. For more information, please follow other related articles on the PHP Chinese website!