Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルがあります。指定された文字列がphpの特定の文字列の前後にあるかどうかを確認したいと思います。
たとえば、
Title = Director, Employee Representative
タイトルのEmployee前後に単語が含まれているかどうかを確認したい。Representativeタイトルにが含まれている場合はRepresentative、単語の前後の単語がEmployee
Employee
Representative
どうやってするか?
これを行う 1 つの方法は、配列に変換することです。たとえば、次のようになります。explode(" ","Employee Representative")
explode(" ","Employee Representative")
array( 0 => Employee 1 => Representative )
次に、探している単語のキー (この場合は 1) を取得し、それをインクリメントまたはデクリメントして、その前後にある単語を確認できます。