summaryrefslogtreecommitdiff
path: root/tests/run-test/test009.phpt
blob: 650686f69017d355ab24c7b7e7e98e27c6b9adf5 (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);
?>
--EXPECTF--
Foo Object
(
)