I have written the following method to differentiate between a Web or API(Rest or query) VS CLI or CRON:
public static function isHttpRequest(){
/**
* If sapi name is cli then we can safely assume CLI is used hence
* not an http request.
* The php-cgi binary can be called from the command line,
* from a shell script or as a cron job as well! If so, the php_sapi_name()
* will always return the same value (i.e. "cgi-fcgi") instead of "cli".
* In such case we consider the Server 'argc' param which contains
* the command line parameters passed to the script (if run on the command line).
* Any CLI or CRON script will have one argument i.e. filename so
* if the argc count is 0 then it is an http request
* In some cases argc is populated with the url params
* thus to further validate
* we need to check the REMOTE_ADDR - The IP address from which the user is viewing the current page
* If REMOTE_ADDR is populated with the ip address of the host then we also
* check HTTP_HOST to be sure of an http request
*/
if(php_sapi_name() != 'cli')
{
if(count($_SERVER['argc']) == 0){
return true;
}
if(isset($_SERVER['REMOTE_ADDR']) && isset($_SERVER['HTTP_HOST'])){
return true;
}
}
return false;
}
Can the above mentioned code fail in any scenario and return incorrect result? What about if a php script is executed from command line using php-cgi binary, in such a case will $_SERVER['REMOTE_ADDR'] and $_SERVER['HTTP_HOST'] will be set? Is there a simpler way to do so?
