PATH:
home
/
ptadmin
/
public_html
/
wp-content
/
plugins
/
backuply
/
1.2.5
/
lib
/
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(); $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; } }
[-] ArrayUtil.php
[edit]
[-] Encoder.php
[edit]
[-] Decoder.php
[edit]
[+]
..
[-] Url.php
[edit]
[-] MultiCurl.php
[edit]
[-] Curl.php
[edit]
[-] StringUtil.php
[edit]
[-] CaseInsensitiveArray.php
[edit]