php-8.0.30-src/Zend/tests/interface_exists_001.phpt

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)