Can someone explain why all this code works normally if PHP is only supposed to support a 256-character set?
I know that Content-Type tag interpret these characters if is on UTF-8. But why PHP work it?
echo "匝";
if (preg_match('/啊/', "啊"))
echo "Match";
if (preg_match('/\w/', "啊"))
echo "Match";
mbstring(multibyte string) extension enabled?