我正在尝试从长数组值中获取字符串。
例如
$array[1]='this is a good day. The number:1, class:math';
$array[2]='this is a bad day. The number:2, class:english';
$array[3]='this is a fine day. The number:3, class:physics';
我想从数组中取出number:1
orclass:math
字符串。
我试过了
echo array_search('number:1',$array);
但它什么也没给我。我想知道是否有更好的方法来做到这一点。非常感谢!