Voting

: min(six, six)?
(Example: nine)

The Note You're Voting On

Ilya Rudenko
19 years ago
Params with null value do not present in result string.

<?php
$arr
= array('test' => null, 'test2' => 1);
echo
http_build_query($arr);
?>

will produce:

test2=1

<< Back to user notes page

To Top