我有以下从我的 css 文件中获取的类名数组
test array after printing values:
Array
(
[0] => #sa_nav
[1] => #sa_nav ul li.account
[2] => .loyaltyBox
)
if(array_search("#sa_nav",$test))
{
echo 'Element is exist';
}
else
{
echo 'Element is not exist';
}
尽管元素存在于数组中,但它会打印“元素不存在”。请帮助