php-src/tests/run-test/test009.phpt

13 lines
114 B
Plaintext
Raw Normal View History

2003-06-01 14:15:44 +00:00
--TEST--
print_r(Object)
--FILE--
<?php
class Foo {}
$foo = new Foo;
print_r($foo);
?>
--EXPECTF--
Foo Object
2003-06-01 14:15:44 +00:00
(
)