preg_match函数在PHP中返回错误结果

时间:2019-03-19 11:05:01

标签: php preg-match

我尝试检查await this.addAttachment.sendKeys(path)是否仅包含英文字母,所以这是我的代码:

string

其结果是$text = 'bcfj'; if (preg_match("^[a-zA-Z\s]+$", $text)) { $dir = 'ltr'; $text = str_replace('&', '&', $text); } else { $dir = 'rtl'; $text = str_replace('&', '&', $text); } echo $dir; 变量= dir,而不是rtl。 我看不到问题。

解决方案:

将preg_match更改为ltr

0 个答案:

没有答案