Php - executing exe from php

how can we execute the ffplay.exe file with php in windows.there anyway help me with some .thanks codes in advance.

-1
source share
1 answer
 `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 as to what each one does, so check the link

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

+2
source

Source: https://habr.com/ru/post/1751712/


All Articles