具体操作步骤:
要做多语言搜索索引,可是php程序要通过在Linux系统的php命令来执行文件,这样php程序文件中的变量便无法获取。
所以要进行传参,但是命令行下执行php,是不走apache等这类东西的,没有什么http协议,所有get,post传参根本不起作用,并且会被报错,如下:
root@test:/pub/www/# php /pub/www/product/Crondo/makeindex.php?lang=en
Could not open input file: /pub/www/product/Crondo/makeindex.php?lang=en
可以通过在php执行文件中获取系统环境变量$argv 来得到要传递的参数
1.test.php测试文件:
#!/usr/bin/php
《?php
print_r($argv);
echo “ ”;
echo “Total number of paramter is : “.$argc;
echo “ ”;
?》
2.命令行调用:
test@ubuntu:~/php$ php test.php 111 222 333 444
All param is :
Array
(
[0] =》 test.php //参数0,脚本本身的文件名
[1] =》 111//参数1
[2] =》 222//参数2
[3] =》 333//参数3
[4] =》 444//参数4
)
Total number of paramter is : 5 //$argc的值为参数的总数
这种传参方式,跟shell很像
test@ubuntu:~/shell$ sh test.sh 111 222
向test.sh传了两个参数111,222,shell会得到三个参数,$0为文件本身,$1为参数1,$2为参数2.不同的是,php得到的`是以数组的形式,而shell不是
以上就是Linux系统中使用命令行执行php文件进行传参的方法了,还不会这项操作的用户快来看看吧,相信看完这篇教程后,会让你对这个操作更加的了解。
1.
2.
3.
4.
5.
6.
7.
8.