1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/Zend/tests/class_alias_007.phpt
Felipe Pena c065d7e7e7 - New tests
2008-05-12 13:30:50 +00:00

20 lines
227 B
PHP

--TEST--
Testing class_alias() using autoload
--FILE--
<?php
function __autoload($a) {
class foo { }
}
class_alias('foo', 'bar', 1);
var_dump(new foo, new bar);
?>
--EXPECTF--
object(foo)#%d (0) {
}
object(foo)#%d (0) {
}