Hi,
Can we use one PHP.INI directive to set the other?
What I mean is like this:
Let's say I have:
upload_tmp_dir = sys:/php/temp
in the PHP.INI file.
Now I want to set the same value into the open_basedir directive like:
open_basedir = ".;sys:/php/temp"
Here, I do not want to hard code "sys:/ptp/temp", but I want this
to be read off from the upload_tmp_dir directive of PHP.INI file.
Something to this effect:
open_basedir = ".;$upload_tmp_dir"
The above doesn't work.
Can something like this be done and if yes, how?
Thanks,
Ananth.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php