I wonder if is there any way to make shebang value on the top of my PHP CLI files dynamic (being set as a constant on a config file)?

Is there any one who had an experience about this before?

link|improve this question

77% accept rate
feedback

2 Answers

Use a symbolic link. That's typically the way unix remaps the location of the interpreter. (whether it's bash, perl, python, php...)

http://www.linux.org/lessons/advanced/x1110.html

link|improve this answer
feedback

Not sure if this answers your question, but:

#!/usr/bin/env php

should work almost everywhere

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.