tty 与 shell_exec?
是否可以在需要 tty 的 PHP 中执行 shell_exec ?
<?php
$output = shell_exec("read foo; echo $foo");
?>
如果没有,还有哪些替代方案?
Is it possible to do shell_exec in PHP, which requires a tty?
<?php
$output = shell_exec("read foo; echo $foo");
?>
If not, what are the alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
注意:脚本退出后,var foo 在 shell 中将不可用。
What about:
Note: The var foo will not be available in your shell after the script exit.