Posted by RC on 05/08/06 22:10
I have two versions of PHP in UNIX/LINUX system
/usr/bin/php (4.3.2)
/usr/local/bin/php (5.0.4)
In a shell script file I can define first line as
#!/usr/local/bin/php
or I can type full path on command line.
My question is how to defind the path in
PHP web page?
I mean when I have codes
<?php
my codes are here
?>
How does the web server know which version to run?
How can I do the similar thing like PERL/CGI script
put #!/path/php in my php web page file?
Thank Q very much in advance!
P.S.
Now, I set the PATH /usr/local/bin:/usr/bin
On command line will run /usr/local/bin/php,
unless you type full path /usr/bin/php
Navigation:
[Reply to this message]
|