Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道运行 CLI 命令的确切 php 函数。我有一个我想使用的应用程序,它有 CLI(命令行界面)用于集成,并希望使用 php 运行这些命令。
exec 是正确的函数吗?希望这是有道理的
请参阅程序执行函数参考。
对于更复杂的场景,您可以使用exec、passthru和或。对于一个简单的 CLI 自动化任务就可以了。systemshell_execproc_openexec
exec
passthru
system
shell_exec
proc_open
是的,您可以使用 PHP 的 exec() 函数来执行外部命令:
http://php.net/manual/en/function.exec.php