I'm trying to run a PHP file as a shell script in linux (using /usr/bin/php interpreter). It looks like this:
#!/usr/bin/php -q
<?php
echo "hi";
?>
when i tyr to run, it show the error :
Error in argument 1, char 3: option not found
Error in argument 1, char 3: option not found
whats wrong with my script??