diff options
author | Sebastian Bergmann <sebastian@php.net> | 2003-06-01 14:15:44 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2003-06-01 14:15:44 +0000 |
commit | 26e7420615a722e73264d3d3d29ce96789ef700a (patch) | |
tree | 0bbbff724975169bf8ef891000307b56cd6c1770 /tests | |
parent | 7463e7239bea1f3c021d6a31013f9ce1c2bfb40a (diff) | |
download | php-git-26e7420615a722e73264d3d3d29ce96789ef700a.tar.gz |
Per request by Derick and Marcus.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/run-test/test009.phpt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run-test/test009.phpt b/tests/run-test/test009.phpt new file mode 100644 index 0000000000..f6412cbda6 --- /dev/null +++ b/tests/run-test/test009.phpt @@ -0,0 +1,12 @@ +--TEST-- +print_r(Object) +--FILE-- +<?php +class Foo {} +$foo = new Foo; +print_r($foo); +?> +--EXPECTF-- +foo Object +( +) |