shorthand to assign multiple variable to same value in php code example
Example: shorthand to assign multiple variable to same value in php
# Initialize multiple regular variables with values
$a = $b = $c = 'Hello PHP';
echo $a.'<br>',$b.'<br>', $c.'<br>';
Output:
*******
Hello PHP
Hello PHP
Hello PHP