summaryrefslogtreecommitdiff
path: root/tests/classes/incdec_property_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/incdec_property_003.phpt')
-rw-r--r--tests/classes/incdec_property_003.phpt31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/classes/incdec_property_003.phpt b/tests/classes/incdec_property_003.phpt
new file mode 100644
index 0000000..1a92384
--- /dev/null
+++ b/tests/classes/incdec_property_003.phpt
@@ -0,0 +1,31 @@
+--TEST--
+ZE2 pre increment/decrement property of overloaded object
+--FILE--
+<?php
+
+class Test {
+ private $real_a = 2;
+
+ function __set($property, $value) {
+ if ($property == "a") {
+ $this->real_a = $value;
+ }
+ }
+
+ function __get($property) {
+ if ($property == "a") {
+ return $this->real_a;
+ }
+ }
+}
+
+$obj = new Test;
+var_dump($obj->a);
+++$obj->a;
+var_dump($obj->a);
+echo "---Done---\n";
+?>
+--EXPECT--
+int(2)
+int(3)
+---Done---