Which version of PHP ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • harvey

    #1

    Which version of PHP ?


    Is there any way (perhaps a script?) to tell what the
    minimum version of PHP is for a given script without having
    to trawl through every command?

    I develop on PHP 5.0 but have tried to keep everything below 4.3
    because that seems to be the highest release on a lot of ISP
    systems.

    I'm looking for a way to test without having to install lower versions ?

    Thanks


  • purcaholic

    #2
    Re: Which version of PHP ?

    On 22 Mai, 14:25, harvey <harvey....@blu eyonzders.comwr ote:
    Is there any way (perhaps a script?) to tell what the
    minimum version of PHP is for a given script without having
    to trawl through every command?
    >
    I develop on PHP 5.0 but have tried to keep everything below 4.3
    because that seems to be the highest release on a lot of ISP
    systems.
    >
    I'm looking for a way to test without having to install lower versions ?
    >
    Thanks
    You can use the PEAR Package PHP_CompatInfo to find out the minimum
    php version. I haven't tried it, but it seems work fine (stable
    release).




    purcaholic

    Comment

    • purcaholic

      #3
      Re: Which version of PHP ?

      On 22 Mai, 14:25, harvey <harvey....@blu eyonzders.comwr ote:
      Is there any way (perhaps a script?) to tell what the
      minimum version of PHP is for a given script without having
      to trawl through every command?
      >
      I develop on PHP 5.0 but have tried to keep everything below 4.3
      because that seems to be the highest release on a lot of ISP
      systems.
      >
      I'm looking for a way to test without having to install lower versions ?
      >
      Thanks
      You can use the PEAR Package PHP_CompatInfo to find out the minimum
      php version. I haven't tried it, but it seems work fine (stable
      release).




      purcaholic

      Comment

      Working...