天天看点

如何在CLI命令行下运行PHP脚本,同时向PHP脚本传递参数?

<?php

/*

//命令行输入输出流

fwrite(stdout,"enter your name:");

$name =

trim(fgets(stdout));

fwrite(stdout,"hello,$name");

*/

echo

$argc;

if ($argc > 1){

print_r($argv);

}

?> 

 另存为 ./test.php

[root@xiuran test]# php  ./test.php xxx fdf

3array

(

    [0]

=> test.php

    [1] =>

xxx

    [2] =>

fdf

)