预定义变量
在线手册:中文 英文
PHP手册

$argc

$argc传递给脚本的参数数目

说明

包含当运行于命令行下时传递给当前脚本的参数的数目。

Note: 脚本的文件名总是作为参数传递给当前脚本,因此 $argc 的最小值为 1

Note: 这个变量仅在 register_argc_argv 打开时可用。

范例

Example #1 $argc 范例

<?php
var_dump
($argc);
?>

当使用这个命令执行: php script.php arg1 arg2 arg3

以上例程的输出类似于:

int(4)


预定义变量
在线手册:中文 英文
PHP手册
PHP手册 - N: 传递给脚本的参数数目

用户评论:

Tejesember (04-May-2011 05:50)

To find out are you in CLI or not, this is much better in my opinion:
<?php
if (PHP_SAPI != "cli") {
    exit;
}
?>

anonymous (21-Oct-2010 10:26)

I use the following lines to check if i'm using CLI mode or not :

<?php
$cli_mode
= false;
if ( isset(
$_SERVER['argc']) && $_SERVER['argc']>=1 ) {
 
$cli_mode = true;
}
?>

karsten at typo3 dot org (18-Feb-2009 08:47)

Note: when using CLI $argc (as well as $argv) are always available, regardless of register_argc_argv, as explained at http://docs.php.net/manual/en/features.commandline.php