我与老师讨论了mb_
功能。无论如何,有一件事导致另一件事,我们改变了主题,他给了我一个例子strpos
和strlen
可能有问题,据他说:
$input = "something"; # input given by the user
$string = "hello"; # string to match
if ( strpos($input, $string) !== false && strlen($input) < strlen($string) ) {
echo "Correct input";
} else {
echo "Incorrect input";
}
(问题不在于如何匹配2个字符串)
根据我的老师的说法,可能有一种方法可以验证语句并执行代码echo "Correct input";
。
但是,我看不出这方面的缺陷。也许编码可能有问题?你有什么想法吗?