ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/src/Curl/ |
<?php namespace Curl; class Decoder { /** * Decode JSON * * @access public * @param $json * @param $assoc * @param $depth * @param $options */ public static function decodeJson() { $args = func_get_args(); // Call json_decode() without the $options parameter in PHP // versions less than 5.4.0 as the $options parameter was added in // PHP version 5.4.0. if (version_compare(PHP_VERSION, '5.4.0', '<')) { $args = array_slice($args, 0, 3); } $response = call_user_func_array('json_decode', $args); if ($response === null) { $response = $args['0']; } return $response; } /** * Decode XML * * @access public * @param $response */ public static function decodeXml($response) { $xml_obj = @simplexml_load_string($response); if (!($xml_obj === false)) { $response = $xml_obj; } return $response; } }