mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
24 lines
343 B
PHP
24 lines
343 B
PHP
--TEST--
|
|
Testing interface_exists() inside a namespace
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace foo;
|
|
|
|
interface IFoo { }
|
|
|
|
interface ITest extends IFoo { }
|
|
|
|
interface IBar extends IFoo { }
|
|
|
|
|
|
var_dump(interface_exists('IFoo'));
|
|
var_dump(interface_exists('foo\\IFoo'));
|
|
var_dump(interface_exists('FOO\\ITEST'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(true)
|
|
bool(true)
|