I want to filter out the array with status=paid, is there any builtin PHP function for this?
Array
(
[0] => Array
(
[id] => 140
[status] => paid
)
[1] => Array
(
[id] => 140
[status] => new
)
[2] => Array
(
[id] => 140
[status] => new
)
)