php-src/ext/spl/tests/class_implements_variation.phpt

46 lines
1.1 KiB
Plaintext
Raw Normal View History

2008-10-17 14:34:55 +00:00
--TEST--
SPL: Test class_implements() function : variation - no interfaces and autoload
--FILE--
<?php
/* Prototype : array class_implements(mixed what [, bool autoload ])
* Description: Return all classes and interfaces implemented by SPL
* Source code: ext/spl/php_spl.c
* Alias to functions:
*/
echo "*** Testing class_implements() : variation ***\n";
echo "--- testing no interfaces ---\n";
class fs {}
var_dump(class_implements(new fs));
var_dump(class_implements('fs'));
echo "\n--- testing autoload ---\n";
2013-12-02 07:53:35 +00:00
var_dump(class_implements('non_existent'));
var_dump(class_implements('non_existent2', false));
2008-10-17 14:34:55 +00:00
function __autoload($classname) {
echo "attempting to autoload $classname\n";
}
?>
===DONE===
--EXPECTF--
*** Testing class_implements() : variation ***
--- testing no interfaces ---
array(0) {
}
array(0) {
}
--- testing autoload ---
2013-12-02 07:53:35 +00:00
attempting to autoload non_existent
2008-10-17 14:34:55 +00:00
2013-12-02 07:53:35 +00:00
Warning: class_implements(): Class non_existent does not exist and could not be loaded in %s on line %d
2008-10-17 14:34:55 +00:00
bool(false)
2013-12-02 07:53:35 +00:00
Warning: class_implements(): Class non_existent2 does not exist in %s on line %d
2008-10-17 14:34:55 +00:00
bool(false)
===DONE===