no message

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@60233 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2001-10-19 15:02:37 +00:00
parent 518c0fcfe6
commit a2a1ef610c

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<!--
TODO:
@ -20,7 +20,7 @@
different purpose than web scripting.
</para>
<para>
Note, that you can allways direct the output of the PHP
Note, that you can always direct the output of the PHP
executable to an external file with the &gt; character,
so <literal>php -q test.php > test.html</literal> will
print out the output of <filename>test.php</filename>
@ -78,7 +78,7 @@ Usage: php [-q] [-h] [-s [-v] [-i] [-f <file>] | {<file> [args...]}
<row>
<entry>-q</entry>
<entry>
Suppress HTTP headers output. Normally PHP prints out
Suppress HTTP headers output. Normaly PHP prints out
HTTP headers for the calling program (ie. webserver)
to hand on to the browser. When writing command line
applications these headers are useless.
@ -215,7 +215,7 @@ This is a command line PHP script with one option.
In the program above we checked if there are less or more than one
arguments. Also if the argument was <literal>--help</literal>,
<literal>-help</literal>, <literal>-h</literal> or <literal>-?</literal>,
we printed out the help message, printng the script name dynamically.
we printed out the help message, printing the script name dynamically.
If we received some other argument we echoed that out.
</para>
<para>