I am in the process of upgrading my php version from 4 to 5.
I would like to know if there is a way to get the current configuration string for the php 4 version so that I can use it in my php5 compilation??
I would like to get the string from somewhere other than the phpinfo() function since that string has all the single quotes and everything in it if possible??
Thanks for the help!!phpversioni didnt mean the version number... I meant the actual ./configure.... string???phpinfo() should show that.
Keep in mind that you should go through your configure string and cross-check with the php5 config stuff (./configure --help), to make sure it's all still valid. There was a bit of stuff changed from 4->5, especially in regards to extensions, and there's probably some new stuff you'll want to add.
I would like to know if there is a way to get the current configuration string for the php 4 version so that I can use it in my php5 compilation??
I would like to get the string from somewhere other than the phpinfo() function since that string has all the single quotes and everything in it if possible??
Thanks for the help!!phpversioni didnt mean the version number... I meant the actual ./configure.... string???phpinfo() should show that.
Keep in mind that you should go through your configure string and cross-check with the php5 config stuff (./configure --help), to make sure it's all still valid. There was a bit of stuff changed from 4->5, especially in regards to extensions, and there's probably some new stuff you'll want to add.