PHP detects whether it is json

王林
Release: 2023-02-25 10:42:02
Original
3586 people have browsed it

PHP detects whether it is json

PHP method to determine whether it is in json format

First of all, remember that json_encode returns a string, and json_decode returns an object

Judge that the data is not in JSON format:

function is_not_json($str){ 
    return is_null(json_decode($str));
}
Copy after login

Judge that the data is legal json data: (PHP version is greater than 5.3)

function is_json($string) { www.jb51.net
 json_decode($string);
 return (json_last_error() == JSON_ERROR_NONE);
}
Copy after login

json_last_error() function returns the error that occurred during the data encoding and decoding process

Note: The string operated by json encoding and decoding must be UTF8

Example:

/**
* 解析json串
* @param type $json_str
* @return type
*/
function analyJson($json_str) {
$json_str = str_replace('\\', '', $json_str);
$out_arr = array();
preg_match('/{.*}/', $json_str, $out_arr);
if (!empty($out_arr)) {
$result = json_decode($out_arr[0], TRUE);
} else {
return FALSE;
}
return $result;
}
Copy after login

If it is not json, return false.

Recommended tutorial: PHP video tutorial

The above is the detailed content of PHP detects whether it is json. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!