summaryrefslogtreecommitdiff
path: root/tests/run-test/test009.phpt
blob: f3d0491e7c40d6a16a0168626ce529ccba96d5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
print_r(Object)
--FILE--
<?php
class Foo {}
$foo = new Foo;
print_r($foo);
?>
--EXPECT--
Foo Object
(
)