what is combined concatenation operator
Posted: Sun Mar 15, 2009 5:49 am
what is combined concatenation operator?
THank You.
Pankaj Gupta
THank You.
Pankaj Gupta
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
$num = 3;
$num += 2;
echo $num; //prints "5", the sum of 3 and 2
$greeting = 'Hello, ';
$greeting .= 'Pankaj';
echo $greeting; //prints "Hello, Pankaj"
?>