Esempio n. 1
0
 /**
  * Checks if string is encoded with JSON data
  * @param string $string
  * @return boolean
  */
 public static function isJSON($string)
 {
     try {
         JSONUtil::decode($string);
     } catch (Exception $e) {
         return false;
     }
     return true;
 }