php命令行模式,人机交互
当我们用到 Python里 raw_input(“”); 时 . 是不是感觉 Python 非常人性化?
rew_input(“Enter an intger”); 实现人机交互.就不用再在跑shell之前再把参数带进去了.
那php有没有这样的功能呢?
答案是肯定的 .
代码如下:
—————————我是代码线—————————–
<?php
echo ‘说些什么吧:’;
$stdin = fopen(‘php://stdin’, ‘r’);
$aaa = fgets($stdin,10000);
echo $aaa;
—————————我是代码线—————————–
测试环境
windows XP SP3
php版本 5.2.3
命令行测试终端 Cygwin