I want to get the value before and after a specific value of an array in PHP.
For example I have:
$array = (441, 212, 314, 406);
And my $specific_value is 441.
In this example I should get the before (406) and after (212).
If my value is 212 I should be get the before (441) and after (314).