How to check if the word is Japanese or English using PHP
- by bn
I want to have different process for English word and Japanese word in this function
function process_word($word)
{
if($word is english)
{
/////////
}else if($word is japanese)
{
////////
}
}
thank you