Görünüşe göre PHP nesnelerine referansla aktarılmıştır. Atama işleçleri bile Nesnenin bir kopyasını oluşturuyor gibi görünmüyor.
İşte basit ve anlaşılmaz bir kanıt:
<?php
class A {
public $b;
}
function set_b($obj) { $obj->b = "after"; }
$a = new A();
$a->b = "before";
$c = $a; //i would especially expect this to create a copy.
set_b($a);
print $a->b; //i would expect this to show 'before'
print $c->b; //i would ESPECIALLY expect this to show 'before'
?>
Her iki basılı durumda da 'sonra' alıyorum
Peki, $ a değerini set_b () 'ye değere göre değil, referansa göre nasıl iletirim ?
(object) ((array) $objectA)
clone $objectA
veya kullandığınızdan daha iyi performansla aynı sonuçlarla sonuçlanabilir new stdClass
.