php-src/Zend/tests/ns_051.phpt
2008-12-04 20:12:30 +00:00

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)