summaryrefslogtreecommitdiff
path: root/Zend/tests/object_property_ref_incdec.phpt
blob: 10ef341532e72361867f5f19490be74466aaefb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Inc/dec of reference object properties
--FILE--
<?php

$obj = new stdClass;
$obj->cursor = 0;
$ref =& $obj->cursor;

$obj->cursor++;
var_dump($obj->cursor);

$obj->cursor--;
var_dump($obj->cursor);

?>
--EXPECT--
int(1)
int(0)