php count array elements with specific key
$cnt = count(array_filter($array,function($element) {
return $element['your_key']=='foo';
}));
php count array elements with specific key
$cnt = count(array_filter($array,function($element) {
return $element['your_key']=='foo';
}));
array map php
The array_map() function sends each value of an array to a user-made function, and returns an array with new values, given by the user-made function.
Tip: You can assign one array to the function, or as many as you like.
Syntax
array_map(functionname, array1, array2, array3, ...)
Example
Send each value of an array to a function, multiply each value by itself, and return an array with the new values:
<?php
function myfunction($val)
{
return($val*$val);
}
$a=array(1,2,3,4,5);
print_r(array_map("myfunction",$a));
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us