mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
13 lines
173 B
PHP
13 lines
173 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)
|