mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-16 10:43:58 +02:00
Unified conditional arguments and replaced APC example
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user