i want to remove from array by minimum and maximum values
for example i have the next array
['10','11','12','12.5','13','14','15.5','16']
i need to remove values from 12 to 13 to be
['10','11','14','15.5','16']
how can make it working in PHP ?
can any one help ? thanks in advance.