summaryrefslogtreecommitdiff
path: root/ext/spl/tests/array_022.phpt
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
committerSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
commit88ec761548b66f58acc1a86cdd0fc164ca925476 (patch)
treed0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/spl/tests/array_022.phpt
parent268984b4787e797db6054313fc9ba3b9e845306e (diff)
downloadphp-git-PECL_OPENSSL.tar.gz
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/spl/tests/array_022.phpt')
-rwxr-xr-xext/spl/tests/array_022.phpt72
1 files changed, 0 insertions, 72 deletions
diff --git a/ext/spl/tests/array_022.phpt b/ext/spl/tests/array_022.phpt
deleted file mode 100755
index 9cb2193f10..0000000000
--- a/ext/spl/tests/array_022.phpt
+++ /dev/null
@@ -1,72 +0,0 @@
---TEST--
-SPL: ArrayObject/Iterator and reference to self
---SKIPIF--
-<?php if (!extension_loaded("spl")) print "skip"; ?>
---FILE--
-==ArrayObject===
-<?php
-
-class MyArrayObject extends ArrayObject
-{
- public function __construct()
- {
- parent::__construct($this);
- $this['bar'] = 'baz';
- }
-}
-
-$a = new MyArrayObject;
-
-$b = clone $a;
-$b['baz'] = 'Foo';
-
-var_dump($a);
-var_dump($b);
-
-?>
-==ArrayIterator===
-<?php
-
-class MyArrayIterator extends ArrayIterator
-{
- public function __construct()
- {
- parent::__construct($this);
- $this['bar'] = 'baz';
- }
-}
-
-$a = new MyArrayIterator;
-
-$b = clone $a;
-$b['baz'] = 'Foo';
-
-var_dump($a);
-var_dump($b);
-
-?>
-===DONE===
---EXPECTF--
-==ArrayObject===
-object(MyArrayObject)#%d (1) {
- ["bar"]=>
- string(3) "baz"
-}
-object(MyArrayObject)#%d (2) {
- ["bar"]=>
- string(3) "baz"
- ["baz"]=>
- string(3) "Foo"
-}
-==ArrayIterator===
-object(MyArrayIterator)#%d (1) {
- ["bar"]=>
- string(3) "baz"
-}
-object(MyArrayIterator)#%d (2) {
- ["bar"]=>
- string(3) "baz"
- ["baz"]=>
- string(3) "Foo"
-}
-===DONE===