Postfix and Prefix Operators in Action : Arithmetic Operators « Operator « PHP
- PHP
- Operator
- Arithmetic Operators
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>
Related examples in the same category