Ne iyi bir yol (along with any pros and cons), aynı sınıftan başka bir nesne ile bir PHP sınıfının bir örneğini başlatılıyor olacağını (ideally in PHP 4.x)?
Burada initialize()
(örneğin, son derece aşağıya bakın benim use-case basitleştirilmiştir) yapmam mümkün istiyorum aslında ne olduğunu:
$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.
Yardımlarınız için şimdiden teşekkür ederiz.
UPDATE
Birçoğunuz clone
öneriyorlar ama ben yanlış sürece sorusunu sormaz. clone
bir kopyasını yapar; Bu sorunun dönüm noktası değil. I'm instead trying to get the constructed object to "become" Bu noktada strong> geçirilen nesne I 0 5 Üzerinden cevapları bir şey önerdi olması gerçeğine dayalı bunu yapmak için bir yol yoktur sanıyorum ama ben beklerim biraz daha uzun durumda en iyi seçmeden önce benim soruları belirsiz olduğunu basitçe oldu.