$argv[] - Command Line Arguments

This section provides a tutorial example on how to use the built-in array, $argv[], to retrieve command line arguments when PHP script files are executed with the 'php' command.

If a PHP script file is executed through the "php" command, additional command line arguments can be passed to the script through the built-in array: $argv.

For example, if "php test.php arg1 arg2 ..." is used to execute the script file called test.php, the built-in array, $argv, will be populated the following values:

$argv[0]: test.php
$argv[1]: arg1
$argv[2]: arg2
$argv[.]: ...

Here is an example PHP script that echoes it's command line arguments:

herong$ more command-line-arguments.php
<?php
for ($i=0; $i<count($argv); $i++) {
  echo "\$argv[$i] = $argv[$i]\n";
}
?>

herong$ php command-line-arguments.php arg1 arg2 arg3
$argv[0] = command-line-arguments.php
$argv[1] = arg1
$argv[2] = arg2
$argv[3] = arg3

herong$ php command-line-arguments.php "arg1 arg2" arg3
$argv[0] = command-line-arguments.php
$argv[1] = arg1 arg2
$argv[2] = arg3

Note that how quotes are used to protect space character as part of a single argument.

Table of Contents

 About This Book

 Introduction and Installation of PHP

 PHP Script File Syntax

 PHP Data Types and Data Literals

 Variables, References, and Constants

 Expressions, Operations and Type Conversions

 Conditional Statements - "if" and "switch"

 Loop Statements - "while", "for", and "do ... while"

 Function Declaration, Arguments, and Return Values

 Arrays - Ordered Maps

Interface with Operating System

$argv[] - Command Line Arguments

 Options to Execute External Programs

 `command` - Backtick Operator

 exec() - Execute External Programs

 system() - Execute External Programs

 passthru() - Execute External Programs

 popen() - Execute External Programs

 proc_open() - Execute External Programs

 memory_get_usage() - Memory Usage Info

 set_time_limit() - max_execution_time

 Introduction of Class and Object

 Integrating PHP with Apache Web Server

 Retrieving Information from HTTP Requests

 Creating and Managing Sessions in PHP Scripts

 Sending and Receiving Cookies in PHP Scripts

 Controlling HTTP Response Header Lines in PHP Scripts

 Managing File Upload

 MySQL Server Connection and Access Functions

 Functions to Manage Directories, Files and Images

 SOAP Extension Function and Calling Web Services

 SOAP Server Functions and Examples

 Localization Overview of Web Applications

 Using Non-ASCII Characters in HTML Documents

 Using Non-ASCII Characters as PHP Script String Literals

 Receiving Non-ASCII Characters from Input Forms

 "mbstring" Extension and Non-ASCII Encoding Management

 Managing Non-ASCII Character Strings with MySQL Servers

 Parsing and Managing HTML Documents

 Configuring and Sending Out Emails

 Image and Picture Processing

 Managing ZIP Archive Files

 Managing PHP Engine and Modules on macOS

 Managing PHP Engine and Modules on CentOS

 Archived Tutorials

 References

 Full Version in PDF/EPUB