PHP基础参考06-关于命令行模式
目录
运行指定php文件
php script.php
在命令行直接运行PHP代码
php -r 'print_r(get_defined_constants())'
shell方式
#!/usr/bin/php
<?php
var_dump($argv);
?>
现在我们就可以像shell脚本或perl脚本一样执行php脚本了:
~$ chmod +x test
~$ ./test -a -b
array(3) {
[0]=>
string(6) "./test"
[1]=>
string(2) "-a"
[2]=>
string(2) "-b"
}