I made a PHP library that uses proc_open
and relies on external application to process data.
Now, I need to make a "check" file that will analyze the server and return if my library can be used on it.
I figured these steps are enough:
- Check if proc_open is allowed
- Check if external application is installed
How do I check if proc_open is allowed? Also, I guess proc_open works on windows-based servers too (just using windows command prompt instead of terminal)?