How to read command line parameters in PHP Shell Scripts

- by

We can access parameters passed via the command line in our PHP shell scripts. Those are stored as an array in the variable $argv. Consider this:

#!/usr/bin/php

The first part of the script prints out all parameters that have been given, while the second part checks if the parameter was "x" or not. Note that the first item in the array ($argv[0]) will be the the first item on the command line, i.e. the file name and path to this very script. $argv[1] is the first parameter, $argv[2] the second, and so forth.

We can call the script with

script.php x

to give it one parameter, or with

script.php x y z

to give it three parameters.



If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.

Leave a Comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.