summaryrefslogtreecommitdiff
path: root/tests/run-test/test009.phpt
blob: f6412cbda6c58b25b76f69da0eb55474edf0fcca (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
(
)