preg_match
文字列を別の文字列と検索または照合できる PHPのような関数があるかどうか疑問に思っています。
//In Array `word` // in array `part`
"Backdoor", 0 "mark" 3 (matches "Market")
"DVD", 1 "of" 2 (matches "Get off")
"Get off", 2 "" -1 (no match)
"Market", 3 "VD" 1 (matches "DVD")
文字列の一部だけに一致する関数があれば素晴らしいと思いますが、私の知る限りではstrcmp
、文字列全体が一致するかどうかのみを比較します。常に false になります。