irkevin Posted August 26, 2009 Share Posted August 26, 2009 I've been searching for a solution about this but im stuck. Here's is a problem.. I have this code: $new_users = User::find_by_date(); echo "<pre>"; print_r($new_users); echo "</pre>"; The result is : Array ( [0] => User Object ( [id] => [firstname] => [lastname] => [username] => jkjkjkjkjkjk [password] => [dob] => [email] => [location] => [date_created] => ) [1] => User Object ( [id] => [firstname] => [lastname] => [username] => tester [password] => [dob] => [email] => [location] => [date_created] => ) ) When i do a foreach to get the data, i do it like this: $new_users = User::find_by_date(); foreach($new_users as $users){ echo $users->username.'<br />'; } It outputs the username like it should. EG: jkjkjkjkjkjk tester What i really want is to seperate then with comma using the implode function. I tried this: foreach($new_users as $users){ echo implode(", ",$users); } But i get Warning: implode() [function.implode]: Invalid arguments passed in C:\wamp\www\mu-anime\var.php on line 8 Warning: implode() [function.implode]: Invalid arguments passed in C:\wamp\www\mu-anime\var.php on line 8 I dont know what to do anymore, can someone help me plz? Quote Link to comment Share on other sites More sharing options...
JonnoTheDev Posted August 26, 2009 Share Posted August 26, 2009 Implode requires an array as the 2nd parameter. You are attempting to implode a string that you are retrieving from each user object. What you must do is create an array of names from each object, then implode it. <?php $new_users = User::find_by_date(); $users = array(); foreach($new_users as $userObj){ $users[] = $userObj->username; } print implode(",", $users); ?> Quote Link to comment Share on other sites More sharing options...
irkevin Posted August 26, 2009 Author Share Posted August 26, 2009 What i tried to do since this morning, you did it in less than 15 minutes :wtf: Thanks a lot for this info and yeah it's working just fine . ! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.