compiled php scripts

I am aware that I can use software like Zend Optimizer, Ioncube, MMcache, etc to encode my php scripts to compiled bytecode.

However, I am working on some scripts that are to be launched from commandline, that I would like to protect.

In my scripts, can I do:

#!/usr/local/bin/php

Or must I launch like:

/usr/local/bin/php script.php

Anyone know?

 

 

 

 

Top