Unified conditional arguments and replaced APC example

This commit is contained in:
Nick Adams
2012-08-14 23:15:25 +12:00
parent 876ec7515d
commit 4f086c3aca
3 changed files with 11 additions and 15 deletions

View File

@@ -22,7 +22,7 @@ Let's write a simple "Hello, $name" CLI program. To try it out, create a file na
{% highlight php %}
<?php
if($argc != 2) {
if ($argc != 2) {
echo "Usage: php hello.php [name].\n";
exit(1);
}