Eğer parametreleri ayarlamak için değişken ait olan Sınıf adlı şaryo yöntemleri kullanamaz Nasıl gelmek
Bu dizi kullanılması Örneğin:
array(0 => array('element' => 'img[src=images/more.gif]', 'attribute' => 'parent()->href'));
Bu işler:
foreach($this->contents->find($target[$key]['element']) as $keyz => $found)
{
$this->store[$keyz] = $found->parent()->href
}
Ama bu değil:
foreach($this->contents->find($target[$key]['element']) as $keyz => $found)
{
$this->store[$keyz] = $found->$target[$key]['attribute'];
}
Öyle gibi onlar diziyi değiştirmeyi denedim:
array(0 => array('element' => 'img[src=images/more.gif]', 'traverse' => 'parent()', 'attribute' => 'href')
Ve sonra çalışıyor:
foreach($this->contents->find($target[$key]['element']) as $keyz => $found)
{
$this->store[$keyz] = $found->$target[$key]['traverse']->$target[$key]['attribute'];
}
çalışmaz.
Her iki başarısızlık üzerine bir print_r ($ this-> store) basitçe) (Array verir;