还是自动化脚本,需要检测是否包含韩文和日文,都知道是正则了,查找现成的代码还是很简单的,示例代码如下:

function isChinese($string) {
return preg_match("/\p{Han}+/u", $st[......]

阅读全文