Postfix and Prefix Operators in Action
|
<html> <head> <title>Postfix and Prefix Operators</title> </head> <body> <?php $a = 5; print("$a = " . $a++ . "<br />"); print("$a = " . ++$a . "<br />"); print("$a = " . $a . "<br />"); print("$a = " . $a. "<br />"); ?> </body> </html>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
|