次のような関数を呼び出しています。
get(array('id_person' => $person, 'ot' => $ot ));
関数内 キーと値は変数であるため、どのようにアクセスできますか?
function get($where=array()) {
echo where[0];
echo where[1];
}
関数内にキーと値のペアがいくつあるか知っているので、foreach'id_person' => $person, 'ot' => $ot
を使用せずに抽出するにはどうすればよいですか?