1--TEST-- 2print_r(Object) 3--FILE-- 4<?php 5class Foo {} 6$foo = new Foo; 7print_r($foo); 8?> 9--EXPECTF-- 10Foo Object 11( 12) 13