長い配列値から文字列を取得しようとしています。
例えば
$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
またはclass:math
文字列を配列から取得したい。
私は試した
echo array_search('number:1',$array);
しかし、それは私に何も与えませんでした。これを行うためのより良い方法があるかどうか疑問に思いました。どうもありがとう!