I need to determine whether the current invocation of PHP is from the command line (CLI) or from the web server (in my case, Apache with mod_php).
Any recommended methods?
|
|
Documentation can be found here: http://php.net/php_sapi_name For example, to determine if PHP is being run from the CLI, you could use this function:
|
||||
|
i think he means if PHP CLI is being invoked or if it is a response from a web request. The best way would be to use
which if it was running a web request would echo apache if that is what it was running. a list of a few:
|
||||
|
|
|
According to http://jp2.php.net/manual/en/features.commandline.php There are a number of constants set only when running from the CLI. These constants are STDIN, STDOUT and STDERR. Testing for one of those will tell you if it is in cli mode |
||||
|
|
|
My preferred method:
|
||||
|
|
|
Try
if it's set, you're in a browser. Alternatlely, you could check if
but that might not be true on windows CLI, IDK. |
||||
|
|
|
I would suggest to check if some of the entries of the $_SERVER array are set. E.g.:
|
||||
|
|
|
I used this:
This is from Drush codebase, environment.inc where they have similar check to make. |
||||
|
|
|
I'd try:
Usually webservers are run under a different username, so that should be telling. |
||||
|
|