1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00
Files
archived-php-src/Zend/tests/interface_exists_001.phpt
Felipe Pena e35c457913 - New tests
2008-05-12 17:57:21 +00:00

22 lines
362 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));
var_dump(interface_exists(new stdClass));
?>
--EXPECTF--
bool(true)
bool(false)
bool(false)
Warning: interface_exists() expects parameter 1 to be string, object given in %s on line %d
NULL