The title is quiet straightforward. I have to know on server side if the script called through HTTP request or by command line. I could examine the $_SERVER['argv'] or $_SERVER['argc'].
What is the pragmatic way to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
http://us3.php.net/manual/en/function.php-sapi-name.php
|
|||
|
Look at the keys in $_SERVER. If it is a cli request, you shouldn't see any that start with "HTTP". Here is some simple test code:
And here is the output:
|
|||||
|
|
|
Possibly checking if no |
|||
|
|
|
I suggest checking |
|||||
|
|
But you have to send the data through http (tcp) anyway no matter if the script is called from cli or from a browser |
|||
|
|