Jump to content

Returning A Variable One Element At A Time


Jimbo_17

Recommended Posts

I am trying to return an array, but only one element at a time. Much in the same way that mysql_fetch_array does. Here is an example of what I am trying to do.

[code]
class test {
  public function one(){
    $test = array(1,2,3,4,5);
    foreach($test as $array){
      return $array;
    }
  }
};


$TEST = new test();
while($blah = $TEST->one()){
  print $blah;  //Want this to print out only one element at a time
}
[/code]

Thanks in advance!
Link to comment
Share on other sites

When you say return, could you be more specific? Because the return command in a method can only be called once, as the method is exited as soon as something is returned. So if you want to interate through an array or something one at at time, returning a value each time. You'll either want to create a special iterator class that can remember its place in the array, or you'll just want a simple foreach loop that goes through the array one at a time letting you do stuff.

EDIT - after looking at your example you want to create an interator

I'll let you devise an iterator class, it would need an attribute like $myPlace and would probably want some methods like, hasNext, next etc. Then you would call the method and next and it would return the next value in the array or whatever and increment the $myPlace value.
Link to comment
Share on other sites

Thank you for the quick reply! I am trying to write a class that can treat a comma seperated values file (CSV) like a database. The problem I am running into is I want to have a function iterate through the file and grab the fields from one line at a time and spit them out. I need a way to grab the fields from one line, store them outside the class, and then go get the next line and start it all over.

CSV Example:

NAME,PHONE,ADDRESS
Bob,555-5555,32 Foo Street
Shirley,555-5555,RM 354 Barr Apts

I want the function to grab Bob's info, split it into an array, and then pass the array out of the class. Once the array is out of the class (In other words, in my index.php), I want it to get Shirley's info and do the same thing.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.