<?php $arr = [ 'status' => 1, 'msg' => [ 'total_records' => 5, 'total_pages' => 1, 'page_number' => 1, 'per_page' => 100, 'return_count' => 5, 'page_result' => [ 0 => [ 'items' => 200052001, 'code' => 501, 'category' => 'watch', 'price' => 50, 'stock' => 1, ], 1 => [ 'items' => 200052001, 'code' => 401, 'category' => 'shirt', 'price' => 3, 'stock' => 1, ], 2 => [ 'items' => 200052001, 'code' => 172758801, 'category' => 'watch', 'price' => 200, 'stock' => 1, ], ], ], 'errcode' => 0, ]; function search($array, $key, $value) { $results = []; if (is_array($array)) { if (isset($array[$key]) && $array[$key] == $value) { $results[] = $array; } foreach ($array as $subarray) { $results = array_merge($results, search($subarray, $key, $value)); } } return $results; } $temp = search($arr, "category", "watch"); print_r($temp);die;
You have javascript disabled. You will not be able to edit any code.