Show Hello World in PHP
Show "Hello World" on standard output.
hello_world.php
<?php
  echo "Hello world\r\n";
?>

      
Result
$ php hello_world.php
Hello world