json_encode( $string )
Contents
Description Description
Source Source
File: wp-includes/compat.php
function json_encode( $string ) { global $wp_json; if ( ! ( $wp_json instanceof Services_JSON ) ) { require_once( ABSPATH . WPINC . '/class-json.php' ); $wp_json = new Services_JSON(); } return $wp_json->encodeUnsafe( $string ); }
Expand full source code Collapse full source code View on Trac