function includeHangul($str)
{
$cnt = strlen($str);
for($i=0; $i<$cnt; $i++)
{
$char = ord($str[$i]);
if($char >= 0xa1 && $char <= 0xfe)
{
return true;
}
}
return false;
}
위 코드를 실행 시키면은 다음과 같은 결과를 얻을수 있습니다.
echo includeHangule('ㄴㄴㄴㄴㄴ_ㄴㄴ-zzzz');
// result : true / 1
echo includeHangule('abcdedczzdda');
// result : false / 0