使用Doctrine的Zend-Framework项目。 数据以对象的形式出现。在我的Zend View中,我可以像
一样访问它$this->personData->getPersonAdress()->getPersonStreet();
由于Person可能没有关联的地址,我们必须检查personadress是否存在以及是否在回显之前填充了personStreet,否则可能会发生回显NULL错误。
所以我们在isset中使用了一些IF:
<? if($this->personData->getPersonaddress()) echo $this->personData->getPersonaddress()->getPersonstreet(); else echo "''"?>
示例(最坏情况):
<?
if(isset($this->address[0]) && is_object($this->address[0]))
{
$help2=$this->address[0]->getAddress();
if (isset($help2) && is_object($help2))
{
$help=$this->address[0]->getAddress()->getCountry();
if (isset($help) && is_object($help) && $help->getCountryId())
{
echo $this->address[0]->getAddress()->getCountry()->getCountryId();
}
}
}
?>
我们需要一个解决方案或者eventualla Zend_view帮助器来简化回显这些值的过程。
任何想法都会受到高度赞赏..
答案 0 :(得分:0)
您可以使用HYDRATE_ARRAY告诉Doctrine返回数组而不是映射对象。
这样,可以直接调用isset()。
答案 1 :(得分:0)
我自己解决了这个问题,实现了一个Zend View Helper,它打印出每个值,忽略了非对象属性或NULL关联可能发生的错误。 这对于使用Zend Framework + Doctrine 2的每个人都很有用。
而不是
$这 - &gt;地址[0] - &GT;的getAddress() - &GT; getCountry() - &GT; getCountryId()
使用(它传递值或默认值(0,第三个参数),如果没有设置)
$ this-&gt; Printsafe($ this-&gt; address [0],“getAddress / getCountry / getCountryId”,0)
class Printsafe extends Zend_View_Helper_Abstract {
public function isObjectOrSet($data, $properties)
{
if ($data != null)
{
if(is_object($data))
{
if (isset($properties[0]))
{
$actual_property = array_shift($properties);
return $this->isObjectOrSet($data->{$actual_property}(), $properties);
}
}
elseif(isset($data))
{
return $data;
}
else
return null;
}
else
return null;
}
/**
* Wants data and getters + properties
* Tests if they are set and returns requested value
* Returns empty value (instead of NULL) if any error occurs
*
* @param mixed $data - Example $this->personData
* @param string $properties - Example "getPersontype/getNotation"
* @param mixed $default - return value if not set. Default is empty string.
*
* @return mixed $value
*/
public function printsafe($data = null, $properties='', $default = '') {
$return = null;
if ($data != null)
{
if ($properties != '')
{
$prop_array = explode("/", $properties);
$return = $this->isObjectOrSet($data, $prop_array);
}
}
if ($return == null)
$return = $default;
return $return;
}
}
答案 2 :(得分:-1)
您可以在链前加上@,这会抑制错误输出 - 然后您根本不需要检查它。如果它不存在,它将不会输出任何内容。
<?php echo @$this->personData->getPersonAdress()->getPersonStreet(); ?>
通常不建议使用@运算符,但在这种情况下,它似乎是一个合适的解决方案。 (缺点是你会错过可能来自这条线的其他错误)