⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
probilgi
/
core
/
vendor
/
opis
/
closure
/
Edit File: functions.php
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; /** * Serialize * * @param mixed $data * @return string */ function serialize($data) { SerializableClosure::enterContext(); SerializableClosure::wrapClosures($data); $data = \serialize($data); SerializableClosure::exitContext(); return $data; } /** * Unserialize * * @param string $data * @param array|null $options * @return mixed */ function unserialize($data, array $options = null) { SerializableClosure::enterContext(); $data = ($options === null || \PHP_MAJOR_VERSION < 7) ? \unserialize($data) : \unserialize($data, $options); SerializableClosure::unwrapClosures($data); SerializableClosure::exitContext(); return $data; }
Simpan