PHP 8.5.0 RC 1 available for testing

Voting

: three plus zero?
(Example: nine)

The Note You're Voting On

kehaovista at qq dot com
9 years ago
$str = 'email=kehaovista@qq.com&city=shanghai&job=Phper';
mb_parse_str($str, $result);
print_r($result);

//结果
Array
(
[email] => kehaovista@qq.com
[city] => shanghai
[job] => Phper
)

<< Back to user notes page

To Top