MivaScript Builtin Function, Miva Merchant 9+
miva_array_search( array var, offset, element var, filter_expr )
<mvt:assign name="g.return_value" value="miva_array_search( array var, offset, element var, filter_expr )" />
Performs an sequential search in "array", starting at "offset". Comparison is made by evaluating "filter_expr" for each element. This allows you to specify the comparison type.
array var
the array that will be searched
offset
the starting index for the search
element var
a variable name used to reference individual array records. See Example 1
filter_expr
an expression similar to the EXPR attribute to MvFILTER. See Example 2