Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
tests /
mongodb /
tests /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
PHONGO-FIXTURES.json.gz
73.94
KB
-rw-r--r--
2025-04-09 02:56
basic-skipif.inc
795
B
-rw-r--r--
2025-04-09 02:56
basic.inc
855
B
-rw-r--r--
2025-04-09 02:56
classes.inc
1.59
KB
-rw-r--r--
2025-04-09 02:56
observer.php
1.09
KB
-rw-r--r--
2025-04-09 02:56
skipif.php
13.15
KB
-rw-r--r--
2025-04-09 02:56
tools.php
23.98
KB
-rw-r--r--
2025-04-09 02:56
Save
Rename
<?php class Person implements MongoDB\BSON\Persistable { protected $name; protected $age; protected $addresses = array(); protected $friends = array(); protected $secret = "none"; public function __construct($name, $age) { $this->name = $name; $this->age = $age; $this->addresses = array(); $this->secret = "$name confidential info"; } public function addAddress(Address $address) { $this->addresses[] = $address; } public function addFriend(Person $friend) { $this->friends[] = $friend; } #[\ReturnTypeWillChange] public function bsonSerialize() { return array( "name" => $this->name, "age" => $this->age, "addresses" => $this->addresses, "friends" => $this->friends, ); } public function bsonUnserialize(array $data): void { $this->name = $data["name"]; $this->age = $data["age"]; $this->addresses = $data["addresses"]; $this->friends = $data["friends"]; } } class Address implements MongoDB\BSON\Persistable { protected $zip; protected $country; public function __construct($zip, $country) { $this->zip = $zip; $this->country = $country; } #[\ReturnTypeWillChange] public function bsonSerialize() { return array( "zip" => $this->zip, "country" => $this->country, ); } public function bsonUnserialize(array $data): void { $this->zip = $data["zip"]; $this->country = $data["country"]; } }