如何在CLI命令行下运行PHP脚本,同时向PHP脚本传递参数?
2020-11-19 10:49
标签:c t sp get int name php test print root enter /* //命令行输入输出流 ?> 另存为 ./test.php [root@xiuran test]# php ./test.php xxx fdf 3Array 如何在CLI命令行下运行PHP脚本,同时向PHP脚本传递参数?,搜素材,soscw.com 如何在CLI命令行下运行PHP脚本,同时向PHP脚本传递参数? 标签:c t sp get int name php test print root enter 原文地址:http://www.cnblogs.com/lixiuran/p/3701958.html
fwrite(STDOUT,"Enter your name:");
$name =
trim(fgets(STDOUT));
fwrite(STDOUT,"hello,$name");
*/
echo
$argc;
if ($argc > 1){
print_r($argv);
}
(
[0]
=> test.php
[1] =>
xxx
[2] =>
fdf
)
下一篇:PHP容易出错的地方!
文章标题:如何在CLI命令行下运行PHP脚本,同时向PHP脚本传递参数?
文章链接:http://soscw.com/index.php/essay/21931.html