1 // تشخیص کلمه فارسی و انگلیسی
2
3 public function isEnglish($str): bool
4 {
5 return strlen($str) == mb_strlen($str, 'utf-8');
6 }
7
8 public function webStandIsRTL(string $string): bool
9 {
10 if (preg_match('/^[^\x{600}-\x{6FF}]+$/u', str_replace("\\\\", "", $string))) {
11 return false;
12 }
13 return true;
14 }