mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
13 lines
114 B
PHP
13 lines
114 B
PHP
--TEST--
|
|
print_r(Object)
|
|
--FILE--
|
|
<?php
|
|
class Foo {}
|
|
$foo = new Foo;
|
|
print_r($foo);
|
|
?>
|
|
--EXPECTF--
|
|
Foo Object
|
|
(
|
|
)
|