Skip to content

Instantly share code, notes, and snippets.

@macagua
Created June 23, 2019 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macagua/004940174289bd12a8e7d03ad92410bf to your computer and use it in GitHub Desktop.
Save macagua/004940174289bd12a8e7d03ad92410bf to your computer and use it in GitHub Desktop.
Hello world PHP CLI example
<?php
if($argc != 2) {
echo "Use: php hello.php [name].\n";
exit(1);
}
$name = $argv[1];
echo "Hello, $name\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment