php-src/Zend/tests/interface_exists_001.phpt
2019-03-11 11:32:20 +01:00

18 lines
221 B
PHP

--TEST--
Testing interface_exists()
--FILE--
<?php
interface foo {
}
var_dump(interface_exists('foo'));
var_dump(interface_exists(1));
var_dump(interface_exists(NULL));
?>
--EXPECT--
bool(true)
bool(false)
bool(false)