json_decode( string $string, bool $assoc_array = false )
Parameters
- $string
-
(Required)
- $assoc_array
-
(Optional)
Default value: false
Return
(object|array)
Source
File: wp-includes/compat.php
function json_decode( $string, $assoc_array = false ) {
global $wp_json;
if ( ! ($wp_json instanceof Services_JSON ) ) {
require_once( ABSPATH . WPINC . '/class-json.php' );
$wp_json = new Services_JSON();
}
$res = $wp_json->decode( $string );
if ( $assoc_array )
$res = _json_decode_object_helper( $res );
return $res;
}