You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
223 B

--TEST--
Bug #55754 (Only variables should be passed by reference for ZEND_SEND_PREFER_REF params)
--FILE--
<?php
current($arr = array(0 => "a"));
current(array(0 => "a"));
current($arr);
echo "DONE";
?>
--EXPECT--
DONE