php store multiple lines in variable code example
Example 1: php multiple line string
//use EOD function for multiple line variable
$variable=<<<EOD
this is line1
this is line2
EOD;
Example 2: define multiple variables in one line php
$foo = $bar = $ping = $pong = '';