Current Path: > > opt > cloudlinux > alt-php52 > > root > usr > share > > pear
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
.channels | Directory | - | - | |
.pkgxml | Directory | - | - | |
.registry | Directory | - | - | |
Archive | Directory | - | - | |
Auth | Directory | - | - | |
Console | Directory | - | - | |
File | Directory | - | - | |
Directory | - | - | ||
Net | Directory | - | - | |
OS | Directory | - | - | |
PEAR | Directory | - | - | |
Structures | Directory | - | - | |
XML | Directory | - | - | |
data | Directory | - | - | |
test | Directory | - | - | |
.depdb | File | 4500 bytes | March 03 2024 22:54:25. | |
.depdblock | File | 0 bytes | March 03 2024 22:54:25. | |
.filemap | File | 19811 bytes | March 03 2024 22:54:25. | |
.lock | File | 0 bytes | March 03 2024 22:54:25. | |
Mail.php | File | 9878 bytes | December 02 2021 08:06:02. | |
PEAR.php | File | 33852 bytes | December 12 2019 15:05:42. | |
PEAR5.php | File | 1087 bytes | December 12 2019 15:05:42. | |
System.php | File | 20833 bytes | December 12 2019 15:05:42. | |
pearcmd.php | File | 14541 bytes | December 12 2019 15:05:42. | |
peclcmd.php | File | 1038 bytes | December 12 2019 15:05:42. |
<?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]; } }
SILENT KILLER Tool