在 PHP 中运行 APT 命令
有谁知道是否可以在 PHP 中运行 APT 命令,如果可以,如何实现?提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道是否可以在 PHP 中运行 APT 命令,如果可以,如何实现?提前致谢。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
假设您指的是 Debian 的高级打包工具,您可以使用各种函数运行 apt 命令:
exec()
passthru()
shell_exec()
proc_open()
您可以在这里找到所有这些的文档:http://php.net/manual/en/ref.exec.php
exec()
可能是您想要的,因为它可以让您捕获返回值和输出。您还可以使用反引号: http://www.php.net/manual /en/language.operators.execution.php
Assuming you mean Debian's Advanced Packaging Tool, you can run apt commands using a variety of functions:
exec()
passthru()
shell_exec()
system()
proc_open()
you can find the documentation for all of them here: http://php.net/manual/en/ref.exec.php
exec()
is probably the one you want, since it lets you capture the return value and the output.you could also use backticks: http://www.php.net/manual/en/language.operators.execution.php