wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_json_encode › WordPress Function

Since4.1.0
Deprecatedn/a
wp_json_encode ( $value, $flags = 0, $depth = 512 )
Parameters: (3)
  • (mixed) $value Variable (usually an array or object) to encode as JSON.
    Required: Yes
  • (int) $flags Optional. Options to be passed to json_encode(). Default 0.
    Required: No
    Default:
  • (int) $depth Optional. Maximum depth to walk through $value. Must be greater than 0. Default 512.
    Required: No
    Default: 512
Returns:
  • (string|false) The JSON encoded string, or false if it cannot be encoded.
Defined at:
Codex:
Change Log:
  • 5.3.0
  • 6.5.0

Encodes a variable into JSON, with some confidence checks.



Source

function wp_json_encode( $value, $flags = 0, $depth = 512 ) {
	$json = json_encode( $value, $flags, $depth );

	// If json_encode() was successful, no need to do more confidence checking.
	if ( false !== $json ) {
		return $json;
	}

	try {
		$value = _wp_json_sanity_check( $value, $depth );
	} catch ( Exception $e ) {
		return false;
	}

	return json_encode( $value, $flags, $depth );
}