mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
34 lines
491 B
PHP
34 lines
491 B
PHP
--TEST--
|
|
086: bracketed namespace with encoding
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--INI--
|
|
zend.multibyte=1
|
|
--FILE--
|
|
<?php
|
|
declare(encoding='utf-8');
|
|
namespace foo {
|
|
use \foo;
|
|
class bar {
|
|
function __construct() {echo __METHOD__,"\n";}
|
|
}
|
|
new foo;
|
|
new bar;
|
|
}
|
|
namespace {
|
|
class foo {
|
|
function __construct() {echo __METHOD__,"\n";}
|
|
}
|
|
use foo\bar as foo1;
|
|
new foo1;
|
|
new foo;
|
|
echo "===DONE===\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
foo::__construct
|
|
foo\bar::__construct
|
|
foo\bar::__construct
|
|
foo::__construct
|
|
===DONE===
|