bagilevi Thu Aug 5 10:47:49 2004 EDT
Modified files:
/phpdoc/en/language expressions.xml
Log:
$a++ is not an expression in PHP/FI 2, but in PHP it is
http://cvs.php.net/diff.php/phpdoc/en/language/expressions.xml?r1=1.29&r2=1.30&ty=u
Index: phpdoc/en/language/expressions.xml
diff -u phpdoc/en/language/expressions.xml:1.29 phpdoc/en/language/expressions.xml:1.30
--- phpdoc/en/language/expressions.xml:1.29 Wed May 5 16:19:50 2004
+++ phpdoc/en/language/expressions.xml Thu Aug 5 10:47:49 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.29 $ -->
+<!-- $Revision: 1.30 $ -->
<chapter id="language.expressions">
<title>Expressions</title>
<simpara>
@@ -78,7 +78,7 @@
languages may be familiar with the notation of variable++ and
variable--. These are <link linkend="language.operators.increment">
increment and decrement operators</link>. In
- PHP, the statement '$a++' has no value (is not an
+ PHP/FI 2, the statement '$a++' has no value (is not an
expression), and thus you can't assign it or use it in any way.
PHP enhances the increment/decrement capabilities by making
these expressions as well, like in C. In PHP, like in C, there