PHP大写等于小写

PHP upper case equal lower case

如何忽略大写和小写并说:

$operator = /* Is equal to */

'apple' $operator 'APPLE'

或者任何想法如何用其他方式获得相同的结果? (使用 strtolower() 除外)

PHP 中有一个名为 strcasecmp() 的函数。这用于 case-insensitive 字符串比较。