It was noted in another question that wrapping the result of a PHP function call in parentheses can somehow convert the result into a fully-fledged expression, such that the following works:
<?php
error_reporting(E_ALL | E_STRICT);
function get_array() {
return Array();
}
function foo() {
// return reset(get_array());
// ^ error: "Only variables should be passed by reference"
return reset((get_array()));
// ^ OK
}
foo();
?>
I'm trying to find anything in the documentation to explicitly and unambiguously explain what is happening here. Unlike in C++, I don't know enough about the PHP grammar and its treatment of statements/expressions to derive it myself.
Is there anything hidden in the documentation regarding this behaviour? If not, can somebody else explain it without resorting to supposition?
Update
I first found this EBNF purporting to represent the PHP grammar, and tried to decode my scripts myself, but eventually gave up.
Then, using phc to generate a .dot file of the two foo() variants, I produced the following images:
[root@lolphin:~] $ yum install phc graphviz
[root@lolphin:~] $ phc --dump-ast-dot test1.php > test1.dot
[root@lolphin:~] $ dot -Tpng test1.dot > test1.png
[root@lolphin:~] $ phc --dump-ast-dot test2.php > test2.dot
[root@lolphin:~] $ dot -Tpng test2.dot > test2.png
Notice how they are identical. >.<


Array()with uppercase A? afaik, the language construct is writtenarray()– knittl Jul 17 '11 at 20:47reset. A variable obviously will always work by reference, which leaves us with the functioncall which is only checked at execution because of the possibility to have something like$variablewithafunctionname(). Why the()would makeresetnot complain... That would mean at the timeresetgets its input it is a reference (refcount > 1), which would mean the expression(get_array())leaves some zval in memory... – Wrikken Jul 17 '11 at 21:31return reset((get_array()?:0));) is already at compile time and the wording is much more harsh: "Fatal error: Only variables can be passed by reference" (and wrong, if a function returns a reference it's all fine). Many flags are checked prior giving the strict notice, I smell somewhere therein it lies but I do not know much about PHP internals: php-trunk/Zend/zend_vm_execute.h line 10853~ – hakre Jul 17 '11 at 21:38