diff --git a/_posts/03-05-01-Command-Line-Interface.md b/_posts/03-05-01-Command-Line-Interface.md index ba0063d..23ff3f0 100644 --- a/_posts/03-05-01-Command-Line-Interface.md +++ b/_posts/03-05-01-Command-Line-Interface.md @@ -11,7 +11,7 @@ CLI PHP programs are powerful because you can use your app's code directly witho Try running PHP from your command line: {% highlight bash %} -php -i +> php -i {% endhighlight %} The `-i` option will print your PHP configuration just like the [`phpinfo`][phpinfo] function. There are a number of other useful [command line options][cli-options], too. @@ -32,9 +32,9 @@ PHP sets up two special variables based on the arguments your script is run with To run our script, above, from the command line: {% highlight bash %} -php hello.php +> php hello.php Usage: php hello.php [name] -php hello.php world +> php hello.php world Hello, world {% endhighlight %}