X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fpropertyproxy001.phpt;h=88a35436b18e680a725306f99657adb520b0c80b;hp=3f9d70a1aed123ec77d580d45f8068e047e2c51e;hb=567a61130ed7f4fd7b47fe104ec32990f84bc06e;hpb=2e9ac0202f2c5f1cb94e0afd4b66c1c35c316284 diff --git a/tests/propertyproxy001.phpt b/tests/propertyproxy001.phpt index 3f9d70a..88a3543 100644 --- a/tests/propertyproxy001.phpt +++ b/tests/propertyproxy001.phpt @@ -1,17 +1,23 @@ --TEST-- property proxy +--SKIPIF-- + --FILE-- headers["bykey"] = 1; var_dump($this->headers); - + } + function test2() { $h = &$this->headers; $h["by1ref"] = 2; var_dump($this->headers); - + } + function test3() { $x = &$this->headers["byXref"]; $h = &$this->headers["by2ref"]; @@ -20,7 +26,8 @@ class m extends http\Message { $x = 2; var_dump($this->headers); - + } + function test4() { $this->headers["bynext"][] = 1; $this->headers["bynext"][] = 2; $this->headers["bynext"][] = 3; @@ -29,7 +36,10 @@ class m extends http\Message { } $m=new m; -$m->test(); +$m->test1(); +$m->test2(); +$m->test3(); +$m->test4(); echo $m,"\n"; ?> @@ -51,7 +61,7 @@ array(3) { ["by1ref"]=> int(2) ["by2ref"]=> - &int(1) + int(1) } array(4) { ["bykey"]=> @@ -59,9 +69,9 @@ array(4) { ["by1ref"]=> int(2) ["by2ref"]=> - &int(1) + int(1) ["byXref"]=> - &int(2) + int(2) } array(5) { ["bykey"]=> @@ -69,9 +79,9 @@ array(5) { ["by1ref"]=> int(2) ["by2ref"]=> - &int(1) + int(1) ["byXref"]=> - &int(2) + int(2) ["bynext"]=> array(3) { [0]=>