On Thu, 2007-10-11 at 19:58 +0200, Anders Norrbring wrote:
> Is there a good way to detect in a script if it's called locally from 
> command line, or via a remote browser?

I've always used

    if( isset( $_SERVER['SERVER_PORT'] ) )
    {
        return 'web';
    }

Cheers,
Rob.
-- 
...........................................................
SwarmBuy.com - http://www.swarmbuy.com

    Leveraging the buying power of the masses!
...........................................................

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to