php-从php执行exe

时间:2010-06-25 06:37:40

标签: php ffmpeg

我们怎样才能在windows中执行来自php的ffplay.exe文件。有什么地方可以提前帮我解决一些codes.thanks。

1 个答案:

答案 0 :(得分:2)

 `ffplay.exe ...` // Using backticks
 exec('ffplay.exe ...') // Using exec
 shell_exec('ffplay.exe ...') // Using shell_exec
 system('ffplay.exe ...') // Using system

每种方法都有细微差别,请查看参考资料

参考   - http://ca2.php.net/manual/en/book.exec.php