读取变量$ this的一部分

时间:2015-05-12 05:36:18

标签: php arrays magento this

我尝试在Magento中调试一个函数,我有一个非常大且复杂的变量$ this,在里面我找到了我需要的数据,但是我无法读取我搜索名为&#34的部分中的数据; HTML"

$html=$this->*Mage_Core_Block_Abstract*_transportObject['_data["html"]'];

第一个问题是名称中的*未重新统一。

1 个答案:

答案 0 :(得分:2)

在我的观察员中,我使用:

  $transport = $this->getTransport();
  var_dump($transport);
  $html = $transport->getHtml();

这会让我相信你可以稍微修改这两行,如下所示:

select cust1.Distance / sum(allCusts.distance)
from distances cust1
cross join distances allCusts
where cust1.CustomerID = '1'
and allCusts.CustomerID in ('1','2','3')
group by cust1.Distance

然后你应该能够阅读你想要的任何内容。