Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
lib /
pear /
Delete
Unzip
Name
Size
Permission
Date
Action
Auth
[ DIR ]
drwxr-sr-x
2017-06-22 15:47
Crypt
[ DIR ]
drwxr-sr-x
2017-06-22 15:47
HTML
[ DIR ]
drwxr-sr-x
2017-06-22 15:47
PEAR
[ DIR ]
drwxr-sr-x
2017-06-22 15:47
PEAR.php
33.72
KB
-rw-r--r--
2017-06-22 15:47
PEAR5.php
1.06
KB
-rw-r--r--
2017-06-22 15:47
README.txt
4.21
KB
-rw-r--r--
2017-06-22 15:47
README_MOODLE.txt
1.64
KB
-rw-r--r--
2017-06-22 15:47
Save
Rename
<?php /** * This is only meant for PHP 5 to get rid of certain strict warning * that doesn't get hidden since it's in the shutdown function */ class PEAR5 { /** * If you have a class that's mostly/entirely static, and you need static * properties, you can use this method to simulate them. Eg. in your method(s) * do this: $myVar = &PEAR5::getStaticProperty('myclass', 'myVar'); * You MUST use a reference, or they will not persist! * * @access public * @param string $class The calling classname, to prevent clashes * @param string $var The variable to retrieve. * @return mixed A reference to the variable. If not set it will be * auto initialised to NULL. */ static function &getStaticProperty($class, $var) { static $properties; if (!isset($properties[$class])) { $properties[$class] = array(); } if (!array_key_exists($var, $properties[$class])) { $properties[$class][$var] = null; } return $properties[$class][$var]; } }