Hello
I have a PHP file which I am using to pipe a email messages to, but also at the same time, the same file can be access by http.
In order for the pipe to work, I had to put the following hashbang in the first line of the code
#!/usr/bin/php -q
However, I don’t want this text to show up if I access the file using a link through the browser.
Is there any parameter to the hashbang that hides it from display?
Thank you