ZendStudio (STDIN) 中的 PHP CLI 应用程序调试
0
我正在尝试使用 Zend Studio 调试 php CLI。我的问题:我无法从键盘获取用户输入。
这是代码的一部分(某些类中的方法):
public function getInput($promt = null, $defaultValue = null) {
if(!isset($promt)){
$promt = self::$DEFAULT_PROMPT;
}
echo $promt;
$stdin = fopen ( "php://stdin", "r" );
$val = fgets ( $stdin );
return $val;
}
所以 ZS 可以很好地遍历代码,但它停在 $val=fgets() 处并且我不知道应该在哪里从键盘输入内容。我在控制台中尝试过,在任何地方,我都检查了调试配置(分配控制台=打开)等。
帮助!
0
I am trying to debug php CLI using Zend Studio. My problem: I can't get user input from keyboard.
This is part of code (method in some class):
public function getInput($promt = null, $defaultValue = null) {
if(!isset($promt)){
$promt = self::$DEFAULT_PROMPT;
}
echo $promt;
$stdin = fopen ( "php://stdin", "r" );
$val = fgets ( $stdin );
return $val;
}
So ZS walks through code quite ok, but it stops at $val=fgets() And I have no clue where am I supposed to enter something from keyboard. I tried in console, and everywhere, I chacked debug configuration (Allocate console = on) etc.
HELP!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论