I have a PHP script that doesn't seem to work when it contains a // type comment. I mean, the script just doesn't seem to execute beyond the // style comment. E.g.
<?php header('Content-type: text/plain');
// some comment
echo "OK";
doesn't work, no output. but:
<?php header('Content-type: text/plain');
echo "OK";
does work. I see OK as output. And:
<?php header('Content-type: text/plain');
/* some comment */
echo "OK";
Also works. Again I see OK as output.
I never encountered this before. Could there be any PHP settings that control this behavior? How do I make my // style comments work?