1--TEST--
2http_build_query() function with null in array
3--FILE--
4<?php
5var_dump(http_build_query([null]));
6?>
7--EXPECT--
8string(0) ""
9