summaryrefslogtreecommitdiff
path: root/tests/classes/__call_003.phpt
diff options
context:
space:
mode:
authorRobin Fernandes <robinf@php.net>2008-01-30 14:25:57 +0000
committerRobin Fernandes <robinf@php.net>2008-01-30 14:25:57 +0000
commit7eb114a9cf19e585be1a0075f5b1275a40d68e91 (patch)
treef6ca9f65deb757efca4406c18041569f3cce2710 /tests/classes/__call_003.phpt
parentb9df996a3b372a869a9e30cb02d45ac63e031450 (diff)
downloadphp-git-7eb114a9cf19e585be1a0075f5b1275a40d68e91.tar.gz
Adding tests for class features, including __autoload(), property inheritance rules and class constants.
Diffstat (limited to 'tests/classes/__call_003.phpt')
-rw-r--r--tests/classes/__call_003.phpt33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/classes/__call_003.phpt b/tests/classes/__call_003.phpt
new file mode 100644
index 0000000000..c7aa95cb04
--- /dev/null
+++ b/tests/classes/__call_003.phpt
@@ -0,0 +1,33 @@
+--TEST--
+Force pass-by-reference to __call
+--FILE--
+<?php
+ class C
+ {
+ function __call($name, $values)
+ {
+ $values[0][0] = 'changed';
+ }
+ }
+
+ $a = array('original');
+
+ $b = array('original');
+ $hack =& $b[0];
+
+ $c = new C;
+ $c->f($a);
+ $c->f($b);
+
+ var_dump($a, $b);
+?>
+--EXPECTF--
+array(1) {
+ [0]=>
+ string(8) "original"
+}
+array(1) {
+ [0]=>
+ &string(7) "changed"
+}
+