mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
12 lines
192 B
PHP
12 lines
192 B
PHP
--TEST--
|
|
Bug #77608: http_build_query doesn't encode "+" in a float number
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = ["x" => 1E+14, "y" => "1E+14"];
|
|
echo http_build_query($a);
|
|
|
|
?>
|
|
--EXPECT--
|
|
x=1.0E%2B14&y=1E%2B14
|