Answers for "php sum string numbers"

PHP
0

sum two numbers in php

<?php  
$x=10;  
$y=20;  
$z = $x + $y;  
echo "Sum of x and y : ". $z;  
?>
Posted by: Guest on April-19-2021
0

php increment sum

$sum+= $add;
Posted by: Guest on September-30-2021
0

Adding string with number in php

$a = "3dollars";
$b = 20;
echo $a += $b;
print($a += $b);
------------------------------
It casts '3dollars' as a number, getting $a = 3.

When you echo, you add 20, to $a, so it prints 23 and $a = 23.

Then, when you print, you again add 20, so now $a = 43.
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language