hsc Tue May 9 18:18:35 2006 UTC
Modified files: /phpdoc/en/language operators.xml Log: minor correction: not the "output" of foo() but the return value is stored in $a http://cvs.php.net/viewcvs.cgi/phpdoc/en/language/operators.xml?r1=1.101&r2=1.102&diff_format=u Index: phpdoc/en/language/operators.xml diff -u phpdoc/en/language/operators.xml:1.101 phpdoc/en/language/operators.xml:1.102 --- phpdoc/en/language/operators.xml:1.101 Sat Feb 18 23:10:39 2006 +++ phpdoc/en/language/operators.xml Tue May 9 18:18:34 2006 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.101 $ --> +<!-- $Revision: 1.102 $ --> <chapter id="language.operators"> <title>Operators</title> <simpara> @@ -218,7 +218,7 @@ Although <literal>!</literal> has a higher precedence than <literal>=</literal>, PHP will still allow expressions similar to the following: <literal>if (!$a = foo())</literal>, - in which case the output from <literal>foo()</literal> is + in which case the return value of <literal>foo()</literal> is put into <varname>$a</varname>. </para> </note>