1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 04:51:03 +02:00
Files
archived-php-src/tests/run-test/test009.phpt
2003-06-01 14:15:44 +00:00

13 lines
114 B
PHP

--TEST--
print_r(Object)
--FILE--
<?php
class Foo {}
$foo = new Foo;
print_r($foo);
?>
--EXPECTF--
foo Object
(
)