LMSouq
php-dev Open

Fastest way to check if a string is JSON in PHP?

KI
Kirk Ouimet
1 month ago
3 views
Problem Description
I need a really, really fast method of checking if a string is JSON or not. I feel like this is not the best way: function isJson($string) { return ((is_string($string) && (is_object(json_decode($string)) || is_array(json_decode($string))))) ? true : false; } Any performance enthusiasts out there want to improve this method?

AI-Generated Solution

Powered by LMSouq AI · GPT-4.1-mini

✓ Solution Ready
Analyzing problem and generating solution…
Was this solution helpful?
Back to Knowledge Base