Jump to content

Merge property values


ayok

Recommended Posts

For example:

class People{
    var $them = array();
    
    function groupPeople(){
      foreach($this->them as $him){
           echo $him.", ";
      }
   }
}

$people  = new People;
$people->them = array('Harry','Todd');

$people->them = array('Tom','Jerry');
$people->groupPeople(); // result: Tom, Jerry,

 

I think this code is working. However, I need to merge those array above, array('Harry','Todd') and array('Tom','Jerry') So I can get array('Harry','Todd','Tom','Jerry') and a list of names as a result. Maybe I should use array_merge, but how? A little help would be appreciated.

 

Thank you in advanced,

ayok

Link to comment
Share on other sites

Something like:

 

$people  = new People;
$people->them = array('Harry','Todd');
$people->them = array_merge($people->them, array('Tom','Jerry'));
$people->groupPeople(); // result: Harry, Todd, Tom, Jerry,

 

Or:

 

class People{
    private $them = array();
    
    function addThem($array) {
        $this->them = array_merge($this->them, $array);
    }
    
    function groupPeople(){
        foreach($this->them as $him){
            echo $him.", ";
        }
    }
}

$people  = new People;
$people->addThem(array('Harry','Todd'));
$people->addThem(array('Tom','Jerry'));
$people->groupPeople(); // result: Harry, Todd, Tom, Jerry,

Link to comment
Share on other sites

class People{
    private $them = array();
    
    function addThem($array) {
        $this->them = array_merge($this->them, $array);
    }
    
    function groupPeople(){
        foreach($this->them as $him){
            echo $him.", ";
        }
    }
}

$people  = new People;
$people->addThem(array('Harry','Todd'));
$people->addThem(array('Tom','Jerry'));
$people->groupPeople(); // result: Harry, Todd, Tom, Jerry,

OMG! This is what I'm looking for!! Thanks a lot! AbraCadaver, you're the best.

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.