23 lines
749 B
PHP
23 lines
749 B
PHP
<?PHP
|
|
## Uncomment the command you need to run PHP
|
|
## This are only examples
|
|
## If you miss one, feel free to add it
|
|
## Only one command should be active at the same time!
|
|
##
|
|
## Default, which should normally working on Linux and Windows
|
|
$phpcommand = "php";
|
|
##
|
|
## Linux
|
|
#$phpcommand = "php56";
|
|
#$phpcommand = "php70";
|
|
#$phpcommand = "/usr/bin/php5";
|
|
#$phpcommand = "/usr/bin/php7.2";
|
|
##
|
|
## Windows
|
|
#$phpcommand = 'C:\PHP5\php.exe';
|
|
#$phpcommand = 'C:\PHP7\php.exe';
|
|
#$phpcommand = 'c:\wamp\bin\php\php.exe';
|
|
#$phpcommand = 'c:\xampp\php\php.exe';
|
|
# On blanks inside the path you need to escape these with special marks --> \" <-- at the beginning and end of the path, see example below
|
|
#$phpcommand = '\"C:\Program Files (x86)\PHP\php.exe\"';
|
|
?>
|