1. 程式人生 > >php 檢測資料型別

php 檢測資料型別

1. 檢測字串是否為xml

    /**
     * 判斷是否為xml格式
     */
    function isXml($str){
        $xml_parser = xml_parser_create();
        if(!xml_parse($xml_parser,$str,true)){
          xml_parser_free($xml_parser);
          return false;
        }else {
          return (json_decode(json_encode(simplexml_load_string($str)),true));
        }
    }

2. 檢測字串是否為json格式

function isJson($string) {
 json_decode($string);
 return (json_last_error() == JSON_ERROR_NONE);
}

參照:https://stackoverflow.com/questions/6041741/fastest-way-to-check-if-a-string-is-json-in-php