2010-06-25 570 views
-1

我們如何在windows中執行php中的ffplay.exe文件,有什麼方法可以幫助我解決一些代碼問題。php-從php執行一個exe文件

+0

http://au2.php.net/manual/en/function。 exec.php – 2010-06-25 06:39:50

+0

可能的重複[php - 添加視頻到php](http://stackoverflow.com/questions/3115893/php-adding-video-to-php) – 2010-06-28 07:01:27

回答

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