How could I detect which version of PHP my PHP script requires? The general version like PHP5 or PHP4 could I know myself, but there are some function which are added not in the minor relase.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
One of the ways is:
|
|||||||
|
|
|
|||
|
|
Use phpversion() . Also, you can use it to tell the version of an extension, with an optional parameter, phpversion([ string $extension ]) |
|||
|
|
|
Pretty much this falls on you, as the developer, knowing what functions you are using and whether they are very new and require newer versions of PHP to run or not. All it takes is one function introduced in a newer version of PHP to make it only as compatible with that version and newer. |
|||
|
|
|
Today I found eventual a script/solution that fits: PHP_CompatInfo (PEAR) |
|||
|
|