array_search is the way to do it. ... From the docs: $array = array(0 => 'blue', 1 => 'red', 2 => 'green', 3 => 'red'); $key = array_search('green ...
確定! 回上一頁