开发者

php- executing a exe from php

how can we execute a ffplay.exe file from开发者_StackOverflow社区 php in windows.there is any way place help me out with some codes.thanks in advance.


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

There are minor variations on what each of these do, so check out the reference

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜