BIG
특정 문자열의 JOSN 형식 여부 검사
<?php
function isJson(string $string):bool
{
$rtnValue = FALSE;
json_decode($string);
if( json_last_error() == JSON_ERROR_NONE )
{
$rtnValue = true;
}// end if
return $rtnValue;
}// end function
?>
참고자료 : https://www.php.net/manual/en/function.json-last-error
LIST
'!!...PHP > !!...SAMPLE' 카테고리의 다른 글
[PHP]12_문법예제 * 를 이용하여 다이아몬드 모양 출력하기 (0) | 2022.12.22 |
---|---|
[PHP]11_특정 디렉토리 파일 목록 출력 (0) | 2022.10.20 |
[PHP]09_Array To XML (0) | 2022.10.20 |
[PHP]08_텔레그램 메시지 발송 함수(telegram message sending function) (0) | 2022.04.03 |
[PHP]07_퀵정렬( quick sort ) (0) | 2022.04.03 |