bool in_array ( mixed $needle
, array $haystack
[, bool $strict
= FALSE
] ) 在 haystack
中搜索 needle
,如果没有设置 strict
则使用宽松的比较。
string strtolower ( string $str
) strtolower — 将字符串转化为小写
array explode ( string $delimiter
, string $string
[, int $limit
] ) 此函数返回由字符串组成的数组,每个元素都是 string
的一个子串,它们被字符串 delimiter
作为边界点分割出来。
原文:https://www.cnblogs.com/caoqh/p/11652224.html