tty 与 shell_exec?

发布于 2024-11-27 03:23:11 字数 153 浏览 0 评论 0原文

是否可以在需要 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撧情箌佬 2024-12-04 03:23:11

怎么样:

<?php

echo shell_exec('read foo; export foo; echo $foo');

注意:脚本退出后,var foo 在 shell 中将不可用。

What about:

<?php

echo shell_exec('read foo; export foo; echo $foo');

Note: The var foo will not be available in your shell after the script exit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文