码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-05-01 06:12:29      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:c   t   sp   get   int   name   php   test   print   root   enter   

<?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
)

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

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

标签:c   t   sp   get   int   name   php   test   print   root   enter   

原文地址:http://www.cnblogs.com/lixiuran/p/3701958.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!