Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/pear/PEAR5.php
Go to the documentation of this file.
00001 <?php
00006 class PEAR5
00007 {
00020     static function &getStaticProperty($class, $var)
00021     {
00022         static $properties;
00023         if (!isset($properties[$class])) {
00024             $properties[$class] = array();
00025         }
00026 
00027         if (!array_key_exists($var, $properties[$class])) {
00028             $properties[$class][$var] = null;
00029         }
00030 
00031         return $properties[$class][$var];
00032     }
00033 }
 All Data Structures Namespaces Files Functions Variables Enumerations