Whether it is half-width Kana

$value = "カウンター";

if (preg_match('/^[ヲ-゚ー ]+$/u', $value)){
	echo "半角です";
} else {
	echo "全角です";
}