Reputation: 1818
Here is the line from my cron job...
*/5 * * * * php /home/user/public_html/index.php --uri=minion --task=emailassets
When my script runs from this cron job, the PHP constant PHP_SAPI equals 'cgi-fcgi'. Why does PHP_SAPI not equal 'cli'?
Upvotes: 29
Views: 23573
Reputation: 529
From php.net manual:
The php_sapi_name()
function is extremely useful when you want to determine the type of interface. There is, however, one more gotcha you need to be aware of while designing your application or deploying it to an unknown server.
Whenever something depends on the type of interface, make sure your check is conclusive. Especially when you want to distinguish the command line interface (CLI) from the common gateway interface (CGI).
Note, that 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
" which you could expect.
Do not always expect /usr/bin/php to be a link to php-cli binary.
Luckily the contents of the $_SERVER
and the $_ENV
superglobal arrays depends on whether the php-cgi binary is called from the command line interface (by a shell script, by the Cron Job, etc.) or by some HTTP server (i.e. Lighttpd).
Upvotes: 7
Reputation: 432
All credit goes to @mopsyd for this, but since the only answer does not provide a solution, I want to post this here so that it's easily readable instead of having to look through the comments.
tl;dr: You have cPanel installed which replaces PHP binaries with Perl scripts.
Use /usr/local/bin/php instead of /usr/bin/php.
You can test this like so:
$ diff /usr/bin/php /usr/local/bin/php
2c2
< # cpanel - php-cgi Copyright 2018 cPanel, L.L.C.
---
> # cpanel - php-cli Copyright 2018 cPanel, L.L.C.
7c7
< package ea_php_cli::cgi;
---
> package ea_php_cli::cli;
19c19
< my $bin = "php-cgi";
---
> my $bin = "php";
As you can see, /usr/bin/php is used for CGI requests and /usr/local/bin/php is used for CLI commands.
Upvotes: 4