Content deleted Content added
i'm not aware that this fails inclusion standards. we have a lot of articles like this. |
→PHP: <ref>wikibooks:PHP_Programming/CLI</ref> |
||
Line 22:
===PHP===
[[PHP]] uses <code>argc</code> as a count of arguments and <code>argv</code> as an [[array (computing)|array]] containing the values of the arguments.<ref>http://php.net/manual/en/reserved.variables.argv.php</ref><ref>[[wikibooks:PHP_Programming/CLI]]</ref> For example:
<source lang="php">
var_dump($argv);
|