Jeff McKeon wrote:
How would I count the number of elements in an array that had a certain
value?
In other words, if I have
$fruit = array(orange,orange,apple,bananna,orange,apple,pear);
How could I get the number of elements from $fruit where the value is
"orange"?
Thanks,
Jeff
$temp = array_
[snip]
>> $fruit = array(orange,orange,apple,bananna,orange,apple,pear);
>>
>> How could I get the number of elements from $fruit where the value is
>> "orange"?
[/snip]
>From http://www.php.net/array_keys with additions;
$array = array("blue", "red", "green", "blue", "blue");
$countArray = coun
On Thursday 20 November 2003 00:33, Jeff McKeon wrote:
> Jason Wong wrote:
> > On Wednesday 19 November 2003 23:24, Jeff McKeon wrote:
> >> How would I count the number of elements in an array that had a
> >> certain value?
> >>
> >> In other words, if I have
> >>
> >> $fruit = array(orange,orange,
Jason Wong wrote:
> On Wednesday 19 November 2003 23:24, Jeff McKeon wrote:
>> How would I count the number of elements in an array that had a
>> certain value?
>>
>> In other words, if I have
>>
>> $fruit = array(orange,orange,apple,bananna,orange,apple,pear);
>>
>> How could I get the number
On Wednesday 19 November 2003 23:24, Jeff McKeon wrote:
> How would I count the number of elements in an array that had a certain
> value?
>
> In other words, if I have
>
> $fruit = array(orange,orange,apple,bananna,orange,apple,pear);
>
> How could I get the number of elements from $fruit where th
[snip]
How would I count the number of elements in an array that had a certain
value?
In other words, if I have
$fruit = array(orange,orange,apple,bananna,orange,apple,pear);
How could I get the number of elements from $fruit where the value is
"orange"?
[/snip]
http://www.php.net/array_keys
-
$i = 0;
foreach ($fruit as $k)
if ('prange' == $k)
$i++;
(The result is $i, of course)
Jeff McKeon wrote:
How would I count the number of elements in an array that had a certain
value?
In other words, if I have
$fruit = array(orange,orange,apple,bananna,orange,apple,pear);
How could I get th
How would I count the number of elements in an array that had a certain
value?
In other words, if I have
$fruit = array(orange,orange,apple,bananna,orange,apple,pear);
How could I get the number of elements from $fruit where the value is
"orange"?
Thanks,
Jeff
--
PHP General Mailing List (htt
8 matches
Mail list logo