One Hat Cyber Team
Your IP :
18.188.236.18
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
chatscript
/
fns
/
curl
/
View File Name :
Decoder.php
<?php declare(strict_types=1); namespace Curl; class Decoder { /** * Decode JSON * * @access public * @param $json * @param $assoc * @param $depth * @param $options */ public static function decodeJson() { $args = func_get_args(); $response = call_user_func_array('json_decode', $args); if ($response === null) { $response = $args['0']; } return $response; } /** * Decode XML * * @access public * @param $data * @param $class_name * @param $options * @param $ns * @param $is_prefix */ public static function decodeXml() { $args = func_get_args(); $response = @call_user_func_array('simplexml_load_string', $args); if ($response === false) { $response = $args['0']; } return $response; } }