<?php
print("Hello World");
print "print() also works without parentheses.";
print "This spans
multiple lines. The newlines will be
output as well";
print "This spans\nmultiple lines. The newlines will be\noutput as well.";
print "escaping characters is done \"Like this\".";
$foo = "foobar";
$bar = "barbaz";
print "foo is $foo"; $bar = array("value" => "foo");
print "this is {$bar['value']} !"; print 'foo is $foo'; print $foo; print <<<END
This uses the "here document" syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon no extra whitespace!
END;
?>