Docs and code standards cleanup for [30055] (`wp_json_encode()` & friends)
fixes #28786 props TobiasBg Built from https://develop.svn.wordpress.org/trunk@30078 git-svn-id: http://core.svn.wordpress.org/trunk@30078 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
682fb09f01
commit
a81a321f9a
|
@ -2613,20 +2613,21 @@ function _scalar_wp_die_handler( $message = '' ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Encode a variable into JSON, with some sanity checks
|
||||
* Encode a variable into JSON, with some sanity checks.
|
||||
*
|
||||
* @since 4.1.0
|
||||
*
|
||||
* @param mixed $data Variable (usually an array or object) to encode as JSON
|
||||
* @param mixed $data Variable (usually an array or object) to encode as JSON.
|
||||
* @param int $options Options to be passed to json_encode(). Default 0.
|
||||
* @param int $depth Maximum depth to walk through $data. Must be greater than 0, default 512.
|
||||
*
|
||||
* @return bool|string The JSON encoded string, or false if it cannot be encoded
|
||||
* @return bool|string The JSON encoded string, or false if it cannot be encoded.
|
||||
*/
|
||||
function wp_json_encode( $data, $options = 0, $depth = 512 ) {
|
||||
// json_encode has had extra params added over the years.
|
||||
// $options was added in 5.3, and $depth in 5.5.
|
||||
// We need to make sure we call it with the correct arguments.
|
||||
/*
|
||||
* json_encode() has had extra params added over the years.
|
||||
* $options was added in 5.3, and $depth in 5.5.
|
||||
* We need to make sure we call it with the correct arguments.
|
||||
*/
|
||||
if ( version_compare( PHP_VERSION, '5.5', '>=' ) ) {
|
||||
$args = array( $data, $options, $depth );
|
||||
} elseif ( version_compare( PHP_VERSION, '5.3', '>=' ) ) {
|
||||
|
@ -2637,8 +2638,8 @@ function wp_json_encode( $data, $options = 0, $depth = 512 ) {
|
|||
|
||||
$json = call_user_func_array( 'json_encode', $args );
|
||||
|
||||
// If json_encode() was successful, no need to do more sanity checking.
|
||||
if ( false !== $json ) {
|
||||
// If json_encode was successful, no need to do more sanity checking
|
||||
return $json;
|
||||
}
|
||||
|
||||
|
@ -2652,7 +2653,17 @@ function wp_json_encode( $data, $options = 0, $depth = 512 ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
* Perform sanity checks on data that shall be encoded to JSON.
|
||||
*
|
||||
* @see wp_json_encode()
|
||||
*
|
||||
* @since 4.1.0
|
||||
* @access private
|
||||
* @internal
|
||||
*
|
||||
* @param mixed $data Variable (usually an array or object) to encode as JSON.
|
||||
* @param int $depth Maximum depth to walk through $data. Must be greater than 0.
|
||||
* @return mixed The sanitized data that shall be encoded to JSON.
|
||||
*/
|
||||
function _wp_json_sanity_check( $data, $depth ) {
|
||||
if ( $depth < 0 ) {
|
||||
|
@ -2669,7 +2680,7 @@ function _wp_json_sanity_check( $data, $depth ) {
|
|||
$clean_id = $id;
|
||||
}
|
||||
|
||||
// Check the element type, so that we're only recursing if we really have to
|
||||
// Check the element type, so that we're only recursing if we really have to.
|
||||
if ( is_array( $el ) || is_object( $el ) ) {
|
||||
$output[ $clean_id ] = _wp_json_sanity_check( $el, $depth - 1 );
|
||||
} elseif ( is_string( $el ) ) {
|
||||
|
@ -2705,7 +2716,16 @@ function _wp_json_sanity_check( $data, $depth ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
* Convert a string to UTF-8, so that it can be safely encoded to JSON.
|
||||
*
|
||||
* @see _wp_json_sanity_check()
|
||||
*
|
||||
* @since 4.1.0
|
||||
* @access private
|
||||
* @internal
|
||||
*
|
||||
* @param string $string The string which is to be converted.
|
||||
* @return string The checked string.
|
||||
*/
|
||||
function _wp_json_convert_string( $string ) {
|
||||
static $use_mb = null;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-alpha-30077';
|
||||
$wp_version = '4.1-alpha-30078';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue