文字列内の文字のすべての位置を配列の形式で取得する必要があります。php 関数については知っていますstrpos()
が、配列を引数として受け入れません。
これは必須です:
$name = "australia"; //string that needs to be searched
$positions_to_find_for = "a"; // Find all positions of character "a" in an array
$positions_array = [0,5,8]; // This should be the output that says character "a" comes at positions 0, 5 and 8 in string "australia"
質問:必要な出力を達成するのに役立つ関数を構築するのに役立つループは何ですか?