HERE-Shellscripts
From RADION OpenLab
shell_command <<\END_OF_HERE some command you want TO send TO stdin of this script. END_OF_HERE
Example:
php <<\END_OF_HERE <?php echo("yeah, lets go HERE!"); ?> END_OF_HERE
Das ganze geht übrigends auch direkt in PHP (Heredoc-Syntax):
<?php $heredoc = <<<IRGENDWAS Beispiel eines Strings über mehrere Script-Zeilen durch Gebrauch der heredoc-Syntax. IRGENDWAS; echo($heredoc); ?>
