Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to change while by foreach in mysql_fetch_row in PHP?

For example

$result = mysql_query("SELECT * FROM test");

while ($row = mysql_fetch_row($result)) {
    print_r($row);
}

This will take all records(rows) from query SELECT * FROM test.

But, if foreach is used

foreach (mysql_fetch_row($result) as $row) {
    print_r($row);
}

This will take only first record(row) from query SELECT * FROM test.

Is it possible get all records by foreach loop when using with mysql_fetch_row ?

share|improve this question
You could use a framework such as codeigniter – RPM Apr 13 '12 at 18:42
4  
@RPM, what's that got to do with anything? – rid Apr 13 '12 at 18:43
Because it handles what your trying to do. Actually nevermind. You're trying to get all rows, without specifying their column names – RPM Apr 13 '12 at 18:44

2 Answers

up vote 3 down vote accepted

You can only use foreach if:

  • you create a class that implements ArrayAccess or Iterator, or
  • you obtain the whole result set in an array and use that array with foreach.

You could use a for loop, but the code would be less than readable:

for ($row = mysql_fetch_row($result); $row !== false; $row = mysql_fetch_row($result)) {
    print_r($row);
}
share|improve this answer
Yes, you are correct for is possible – Justin John Apr 13 '12 at 19:00
Should be Iterator instead of ArrayAccess – dev-null-dweller Apr 13 '12 at 22:03
@dev-null-dweller, both ArrayAccess and Iterator can be used with foreach. Updated answer. – rid Apr 13 '12 at 22:16
But ArrayAcces does not give you control on order of kes/values and skips protected/private properties, and fails completely when using internal array (or resource in this case) as data holder instead of class properties, so it can give different results when accessing as array and iterating with foreach, so to have true iterable object, better use Iterator. – dev-null-dweller Apr 14 '12 at 7:20

No, because foreach needs a array. Here, mysql_fetch_row() returns only one row at a time.

share|improve this answer
It is possible with for loop – Justin John Apr 13 '12 at 18:47

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.