関数 json_encode()
定義ファイル :/blog/wp-includes/compat.php
読込むファイル :/blog/wp-includes/class-json.php
json_encode()
1 2 3 4 5 6 7 8 9 10 | if ( !function_exists('json_encode') ) { function json_encode( $string ) { global $wp_json; if ( !is_a($wp_json, 'Services_JSON') ) { require_once( ABSPATH . WPINC . '/class-json.php' ); $wp_json = new Services_JSON(); } return $wp_json->encodeUnsafe( $string ); } } |