可以說我有串PHP比較字符串數組串
$string = "12315";
我想比較這陣列和想要的結果,因爲這:
$arr = [
"123", //should be true
"115", //should be true
"111", //false
"132", //true
"1512" //true
"5531" //false
]
數組值不應該有每個計數數字大於給定的字符串 我應該怎麼做?先謝謝你!
請解釋的' '12315''與'數組值' 123'',''115''比較如何應評估爲' true「,而與」111「的比較應該評估爲」false「。 – someOne
@someOne因爲字符串「12315」包含兩個數字「1」,而「111」是三個數字「1」,所以它應該返回false –
其相當明顯 – CodeGodie