mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
7aacc705d0
Closes GH-5958
14 lines
179 B
PHP
14 lines
179 B
PHP
--TEST--
|
|
051: Name conflict and compile-time constants (php name)
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
function foo($x = INI_ALL) {
|
|
var_dump($x);
|
|
}
|
|
foo();
|
|
?>
|
|
--EXPECT--
|
|
int(7)
|