在PHP中运行APT命令

时间:2011-10-11 02:43:00

标签: php debian apt

有没有人知道在PHP中运行APT命令是否可行,如果可以,怎么做?提前谢谢。

1 个答案:

答案 0 :(得分:2)

假设您的意思是Debian的高级打包工具,您可以使用各种功能运行apt命令:

  • exec()
  • passthru()
  • shell_exec()
  • system()
  • proc_open()

您可以在此处找到所有这些文档:http://php.net/manual/en/ref.exec.php

exec()可能是您想要的,因为它可以捕获返回值和输出。

你也可以使用反引号:http://www.php.net/manual/en/language.operators.execution.php