下面的代码返回我使用的任何 $name 变量的匹配项。有人介意解释原因和必要的更正吗?谢谢!
$name = 'Johns Donuts';
if (preg_match("/INTERNAL USE ONLY | /",$name) ==1 ) {
echo 'I match internal use only: '.$name.'';
} else {
echo 'I DONT match internal use only: '.$name.'';
}
下面的代码返回我使用的任何 $name 变量的匹配项。有人介意解释原因和必要的更正吗?谢谢!
$name = 'Johns Donuts';
if (preg_match("/INTERNAL USE ONLY | /",$name) ==1 ) {
echo 'I match internal use only: '.$name.'';
} else {
echo 'I DONT match internal use only: '.$name.'';
}