eXorithm – Execute Algorithm: View / Run Algorithm array_rsearch

Logo Beta

function array_rsearch ($search$array$strict
{
  $array = array_reverse$array, true);
  foreach ($array as $key => $value){
    if ($strict) {
      if ($value === $search
        return $key
    } else {
      if ($value == $search
        return $key
    }
  }
  return false;