Fix GH-1281: commandline description content error

This commit is contained in:
Christoph M. Becker 2021-12-30 16:38:19 +01:00
parent eabde0419c
commit 84eaa4850b
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6

View file

@ -1107,7 +1107,7 @@ $ some_application | some_filter | php | sort -u > final_output.txt
first index (zero) always contains the name of the script as called from the
command line. Note that, if the code is executed in-line using the command
line switch <option>-r</option>, the value of <varname>$argv[0]</varname>
will be just a dash (<literal>-</literal>). The same is true if the code is
will be <literal>"Standard input code"</literal>; prior to PHP 7.2.0, it was a dash (<literal>"-"</literal>) instead. The same is true if the code is
executed via a pipe from <literal>STDIN</literal>.
</para>