Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Version.php
Go to the documentation of this file.
00001 <?php
00030 final class Zend_Version
00031 {
00035     const VERSION = '1.10.6';
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 }
 All Data Structures Namespaces Files Functions Variables Enumerations