Thursday, 30 August 2018
Subscribe to:
Post Comments (Atom)
[Case] => Array
(
[0] => Array
(
[CASE_ID] => 2233
[CHECK_ID] => 57
[CLIENT_ID] => 78
)
[2] => Array
(
[CASE_ID] => 9542
[CHECK_ID] => 45
[CLIENT_ID] => 18
)
)
CHECK_ID
, then it should return me an array containing 57,45
. Kindly ask if you need more explanation. Thanks in Advance.function find_matches($array, $value) {
$found = array();
array_walk_recursive($array,
function ($item, $key) use ($value, &$found) {
if ($value === $key) {
$found[] = $item;
}
}
);
return $found;
}
fields
condition restriction?Hello Friends! I am Ramana a part time blogger from Hyderabad.
0 comments:
Post a Comment