ctype_graph() 함수는 공백을 제외한 인쇄 가능한 문자를 확인합니다. 문자열 텍스트의 모든 문자가 10진수이면 TRUE를 반환하고 그렇지 않으면 FALSE를 반환합니다.
구문
ctype_graph(str)
매개변수
-
문자열 − 테스트한 문자열입니다.
반환
ctype_graph() 함수는 텍스트의 모든 문자가 인쇄 가능하고 실제로 보이는 출력(공백 없음)을 생성하면 TRUE를 반환하고 그렇지 않으면 FALSE를 반환합니다.
예시
다음은 예입니다 -
<?php $arr = array('khy\n\r\t', 'arf12', 'LKA#@%.54'); foreach ($arr as $demo) { if (ctype_graph($demo)) { echo "$demo consists of all (visibly) printable characters \n"; } else { echo "$demo does not have all (visibly) printable characters. \n"; } } ?>
출력
khy\n\r\t consists of all (visibly) printable characters. arf12 consists of all (visibly) printable characters LKA#@%.54 consists of all (visibly) printable characters