Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After several attempts to find a unique solution for my thought, I've had no chances to post this question here in the hope to find someone who can enlight me (if applicable).

I'm working on a "full featured" PHP class with several methods so I will be able to do what I'm willing to do in the future (that is, kinda of personal framework).

I'm stuck in the fetchRow() method of the class. I would like to use this method to fetch rows from a query AND I would like that this method automatically forms the proper data structure.

Now, assuming that I have a query like:

$query = mysql_query("SELECT name, surname FROM people", $dbHandle);

I would like to have this result (if applicable):

/*
 * var_dump example results after launching a while statement with
 * mysql_fetch_row.
 *
 * 2 fields (name,surname), 2 "master" arrays with corresponding values
 *
 */

array
 0 = array( ...names... )
 1 = array( ...surnames... )

Now, I tried several native PHP functions, user-defined functions, etc, without goals.

Maybe I'm crazy after these attempts, maybe this is not possible or maybe I can't see a possible simple way to do that.

How can I do that?

share|improve this question
2  
You aren't trying to re-invent Doctrine, are you? doctrine-project.org – Piskvor Jul 16 '12 at 14:00
1  
Why don't you just use an ORM system? Like Doctrine? doctrine-project.org/projects/orm.html – ametren Jul 16 '12 at 14:01
Thanks guys for your fast reply. No, I didn't even know Doctrine before now. I want to do that on my own. But of course thanks for your suggestion and links. – wartoverflow Jul 16 '12 at 14:10
What do you mean by "universal PHP (mysql) fetch row method"? – Lèse majesté Jul 16 '12 at 14:58
@Lèse a single method that perform an operation without need to re-type every time the same things. – wartoverflow Jul 16 '12 at 15:08

1 Answer

up vote 0 down vote accepted

Well you would just do something like:

$data = array();
while (false !== ($row = mysql_fetch_array($result, MYSQL_NUM)) {
   foreach($row as $key => $value) {
      if(!isset($data[$key]) {
         $data[$key] = array();
      }

      $data[$key][] = $value;
   }
}

That said...

  1. Just use Doctrine - either the full ORM or the DBAL.
  2. Dont use ext/mysql use PDO or Mysqli.
share|improve this answer
Ok, I definitely was blind. That's the right point. Thanks @prodigitalson . But your solutions gives two master arrays (that's ok) with an internal array..with values. I want only these master arrays with values..no keys. – wartoverflow Jul 16 '12 at 14:22
Well they key is jsut going to be the integer index of the column, so its analagous to jsut pushing onto the array. youll get results like: $data[0][0] = 'Name0' $data[1][0] = 'Surname0'... which is exactly what you asked for. The trik is to fetch the columns indexes (mysql_fetch_array) as keys instead of the column name (mysql_fetch_assoc) – prodigitalson Jul 16 '12 at 14:28
Not exactly. I would like to have: array 0 => array('Bob','Jack','Daniel', ... ) 1 => array('Nickelsen','Bibidi','Bobidi', ...) ...instead of...array 0 => array( 0 => 'Bob', 1 => 'Jack', 2 => 'Daniel', ... ) 1 => array( 0 => 'Nickelsen', 1 => 'Bibidi', 2 => 'Bobidi', ...) – wartoverflow Jul 16 '12 at 14:31
2  
And that is exactly what you will get... the arrays always have keys... array('Value') is EXACTLY the same as array( 0 =>'Value'). There is no such thing as a keyless array. – prodigitalson Jul 16 '12 at 14:33
1  
Perfromance will be ugly, but i dont know that that deserves a downvote... It does exactly what he asked for however misguided that is... personally i dont even know why one would want a result set sorted in to arrays of values for each column... seems like the least useful way to structure a dataset. – prodigitalson Jul 16 '12 at 14:55
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.