getPathname(); } } return $files; } /* * Permet de vérifier si une chaîne est un flux JSON. * * @param string $string : Chaîne à analyser. * @return boolean : true si la chaîne est un flux JSON, false sinon. */ public static function isJSON($string){ return is_string($string) && is_array(\json_decode($string, true)) && (\json_last_error() == JSON_ERROR_NONE) ? true : false; } }