• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/Version.php

00001 <?php
00030 final class Zend_Version
00031 {
00035     const VERSION = '1.9.7';
00036 
00047     public static function compareVersion($version)
00048     {
00049         $version = strtolower($version);
00050         $version = preg_replace('/(\d)pr(\d?)/', '$1a$2', $version);
00051         return version_compare($version, strtolower(self::VERSION));
00052     }
00053 }

Generated on Thu Apr 19 2012 17:01:18 for openbiz by  doxygen 1.7.2