-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/Zend/tests/ |
|
|
| Current File : //usr/src/php/Zend/tests/interface_exists_002.phpt |
--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)
Copyright © 2017 || Recoded By Mr.Bumblebee