PHP - Arithmetic Operators Example

Unknown 09:42

PHP - Arithmetic Operators Example

PHP - Arithmetic Operators Example



Try following example to understand all the arithmetic operators. Copy and paste following PHP program in test.php file and keep it in your PHP Server's document root and browse it using any browser.
<html>

<head>
<title>Arithmetical Operators</title>
</head>

<body>

<?php
$a
= 42;
$b
= 20;

$c
= $a + $b;
echo
"Addtion Operation Result: $c <br/>";

$c
= $a - $b;
echo
"Substraction Operation Result: $c <br/>";

$c
= $a * $b;
echo
"Multiplication Operation Result: $c <br/>";

$c
= $a / $b;
echo
"Division Operation Result: $c <br/>";

$c
= $a % $b;
echo
"Modulus Operation Result: $c <br/>";

$c
= $a++;
echo
"Increment Operation Result: $c <br/>";

$c
= $a--;
echo
"Decrement Operation Result: $c <br/>";
?>

</body>
</html>
This will produce the following result −
Addtion Operation Result: 62
Substraction Operation Result: 22
Multiplication Operation Result: 840
Division Operation Result: 2.1
Modulus Operation Result: 2
Increment Operation Result: 42
Decrement Operation Result: 43 

Share this

Related Posts

  • PHP - Constants TypesPHP - Constants TypesA constant is a name or an identifier for a simple value. A constant value cannot change during th
  • PHP Chat ScriptsPHP Chat Scripts Here I will Show you How To Use Chat System In PHPDOWNLOAD CODE FROM HERE
  • How to calculate AGE from your birth-date in PHPHere I will Provide Code for How to calculate AGE from your birth-dateall data will be dynamically this is no static sc
  • PHP - Facebook LoginPHP - Facebook LoginWe can use Facebook login to allow the users to get access into the websites. This page will explai

EmoticonEmoticon

:)
:(
=(
^_^
:D
=D
=)D
|o|
@@,
;)
:-bd
:-d
:p
:ng