When calling php via command line to do a privledged php script... how does one force the php to NOT output the "headers" of expires/cookies/content type/etc?
I checked the 'header()' function and it hinted to no way of doing this...
Any ideas?
pass the parameter -q:
php -q script.php
That will put PHP into quiet mode.
Diego