Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Initialize a Instance of a PHP Class using another Object Instance?

What would be a good way (along with any pros and cons) of initializing an instance of a PHP class with another object of the same class (ideally in PHP 4.x)?

Here in initialize() is essentially what I'd like to be able to do (example is extremely simplified from my use-case, see below):

$product = new Product('Widget');
$product2 = new Product('Widget #2');
$product->initialize($product2);
echo $product->name;  // echos "Widget #2"

class Product {
 var $name;
 function __constructor($name) {
   $this->name = $name;
 }
 function initialize($product) {
   // I know this cannot be done this way in PHP. 
   // What are the alternatives and their pros & cons?
   $this = $product;  
 }
}

I know this may not be "good programming practice"; with 20+ years programming experience on other languages I know a bit about what's good and what's not. So hopefully we won't get hung up on if doing this makes sense or not. I have a use-case working with some open-source code that I can't change so please just bear with me on my need for it. I'm actually trying to create an OOP wrapper around some really ugly array code buried deep in the core of WordPress.

I'm trying to write it so in future versions they can move away from the ugly array-based code because everyone will be using the new API that otherwise fully encapsulated these nasty arrays. But to make it work elegantly I need to be able to do the above (in PHP 4.x) and I don't want to write code that just copies the properties.

Thanks in advance for your help.

UPDATE

Many of you are suggesting clone but unless I misunderstand that doesn't address the question. clone makes a copy; that's not the crux of the question. I'm instead trying to get the constructed object to "become" the object passed in. At this point I'm assuming there isn't a way to do that based on the fact that 0 out of 5 answers have suggested anything but I'll wait a bit longer before selecting a best in case it was simply that my questions was unclear.

like image 920
MikeSchinkel Avatar asked Sep 29 '10 23:09

MikeSchinkel


People also ask

How do you initialize a class in PHP?

A constructor allows you to initialize an object's properties upon creation of the object. If you create a __construct() function, PHP will automatically call this function when you create an object from a class. Notice that the construct function starts with two underscores (__)!

How can use class from another class in PHP?

The public keyword is used in the definition of the class, not in a method of the class. In php, you don't even need to declare the member variable in the class, you can just do $this->tasks=new tasks() and it gets added for you.

Can you instantiate a class in another class?

Yes you definitely can instantiate a class inside a constructor method of another class.

How do I instance an object in PHP?

To create an Object in PHP, use the new operator to instantiate a class. If a value of any other type is converted to an object, a new instance of the stdClass built-in class is created.


2 Answers

In PHP 5, object cloning might be more relevant:

http://php.net/manual/en/language.oop5.cloning.php

You can define a special __clone method.

In PHP 4 and 5, you can copy properties via:

function copy($obj)
{
  foreach (get_object_vars($obj) as $key => $val)
  {
     $this->$key = $val;
  }
}

However, you wrote "I don't want to write code that just copies the properties," and I'm not exactly sure what you mean by that.

like image 149
Matthew Avatar answered Oct 05 '22 23:10

Matthew


Preferred way of doing this is to use clone keyword and to implement appropriate __clone() method if needed as mentioned by other posters. Another trick way of doing this (con: slow, pros: can be stored, sent over network and works identical in php4/5) is to serialize an object and then unserialize to create new copies of it with identical variable values.

Example:

$productCopy = unserialize(serialize($product));

EDIT: Sorry, misunderstood what you were asking for. You will have to initialize variables of the object being constructed with passed in object's variables inside of the constructor. You can't return a reference to another object from the constructor.

Example:

public function __construct($name, $object = null) { 
    if($object) { 
        foreach(get_object_vars($object) as $k => $v) {
            $this->$k = $v;
        } 
    } else {
        $this->name = $name;
    }
} 
like image 39
vls Avatar answered Oct 06 '22 00:10

vls