3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isJson2($string) { try { json_decode($string); } catch (ErrorException $e) { return FALSE; } return (json_last_error() == JSON_ERROR_NONE); } /** * Checks whether a string is valid JSON. * * @param string $string * @return boolean */ function isJson($string) { // Make sure the string is not empty and whether it is a string. if(!empty($string) && is_string($string)) { json_decode($string); return (json_last_error() == JSON_ERROR_NONE); } return false; } $a=['arraiii'=>['dentro'=>234]]; $b=json_encode(['asdf'=>45]); $c=''; var_export(json_decode($b)); var_dump(isJson($b));
Output for git.master, git.master_jit, rfc.property-hooks
(object) array( 'asdf' => 45, )bool(true)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.9 ms | 401 KiB | 8 Q