Connecting Tech Pros Worldwide Help | Site Map

Count the number of unique values of field in object in array

  #1  
Old March 25th, 2008, 07:45 PM
Dan Soendergaard
Guest
 
Posts: n/a
Hi all,

I'm sure there is a simple solution to this problem, although it
sounds rather complex. I have an array of Entry objects with the
fields: ip, date (unix time), name. So, the array might contain this
data,

000.000.000.000 987678 hello
001.001.001.001 558821 hello
000.000.000.000 287999 something

What I want to do is to sort the array of objects by a field.
Essentially, I'd like something like:

sort($data, $object->name);
or
sort($data, $object->date);

Is there a way to do this in PHP, or do I have to write a function
myself? If yes, do you have any suggestions on how to do this?

Also, is there a way to make array_count_values() and array_unique()
operate on fields in objects?

Thank you very much in advance!

- Dan
  #2  
Old March 25th, 2008, 09:45 PM
Michael Fesser
Guest
 
Posts: n/a

re: Count the number of unique values of field in object in array


..oO(Dan Soendergaard)
Quote:
>I'm sure there is a simple solution to this problem, although it
>sounds rather complex. I have an array of Entry objects with the
>fields: ip, date (unix time), name. So, the array might contain this
>data,
>
>000.000.000.000 987678 hello
>001.001.001.001 558821 hello
>000.000.000.000 287999 something
>
>What I want to do is to sort the array of objects by a field.
>Essentially, I'd like something like:
>
>sort($data, $object->name);
>or
>sort($data, $object->date);
>
>Is there a way to do this in PHP, or do I have to write a function
>myself? If yes, do you have any suggestions on how to do this?
You would have to write your own function and use it with usort().
Quote:
>Also, is there a way to make array_count_values() and array_unique()
>operate on fields in objects?
Not really, but you could wrap the entire list into an object and add a
method to return a particular column from the list, e.g.

$data->getColumn(0);

would return an array containing all IP addresses, the parameter 1 would
return an array with all timestamps, 2 all the names. This would allow
you to use a lot of array functions on just a particular column. Even
the sorting could then probably be done with array_multisort().

HTH
Micha
  #3  
Old March 25th, 2008, 09:45 PM
Jerry Stuckle
Guest
 
Posts: n/a

re: Count the number of unique values of field in object in array


Dan Soendergaard wrote:
Quote:
Hi all,
>
I'm sure there is a simple solution to this problem, although it
sounds rather complex. I have an array of Entry objects with the
fields: ip, date (unix time), name. So, the array might contain this
data,
>
000.000.000.000 987678 hello
001.001.001.001 558821 hello
000.000.000.000 287999 something
>
What I want to do is to sort the array of objects by a field.
Essentially, I'd like something like:
>
sort($data, $object->name);
or
sort($data, $object->date);
>
Is there a way to do this in PHP, or do I have to write a function
myself? If yes, do you have any suggestions on how to do this?
>
Also, is there a way to make array_count_values() and array_unique()
operate on fields in objects?
>
Thank you very much in advance!
>
- Dan
>
Check out usort().

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

  #4  
Old March 26th, 2008, 06:55 AM
Dan Soendergaard
Guest
 
Posts: n/a

re: Count the number of unique values of field in object in array


>
Quote:
You would have to write your own function and use it with usort().
>
Ok, I'll look into writing such a function. Thank you for your help!
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Overriding Equals method not being called when doing IndexOf an item in an ArrayList JohnR answers 18 November 21st, 2005 04:14 PM
comp.lang.c Answers to Frequently Asked Questions (FAQ List) Steve Summit answers 0 November 13th, 2005 03:15 AM
PHP/MySQL fulltext search relevancy formula update Phil Powell answers 0 July 17th, 2005 10:36 AM
Using PHP to calculate MySQL fulltext relevancy scores by hand Phil Powell answers 2 July 17th, 2005 10:36 AM