PHP:从数组中的对象调用函数

时间:2013-06-01 20:27:00

标签: php casting

我有很多关于它的帖子,但没有真正的答案:(。我的问题如下:

我有以下Bean类:

<?php
class ResultBean {


private $_label;
private $_resultSet;
private $_headerSet;
private $_numRows = 0;
private $_numFields = 0;
private $_empty = TRUE;
private $_dataArray;
private $_headerArray;

public function __construct($label) {
    $v = trim($label);
    $this->_label = empty($label) ? "" : $v;

}

public function setResultSet($value) {

    if(!$value){
        $this->_resultSet = null;
        $this->_empty = TRUE;
    }else{
        $this->_resultSet = $value;
        $this->_empty = FALSE;
    }

    return $this;
}

public function getResultSet() {
    return $this->_resultSet;
}

public function getLabel() {
    return $this->_label;
}

public function setLabel($value) {
    $v = trim($value);
    $this->_label = empty($value) ? null : $v;
    return $this;

}

public function setHeaderSet($value) {
    $this->_headerSet = !$value ? null : $value;
    return $this;   
}

public function getHeaderSet() {
    return $this->_headerSet;
}

public function setNumRows($value) {
    $this->_numRows = $value;
    return $this;
}

public function getNumRows() {
    return $this->_numRows;
}

public function setNumFields($value) {
    $this->_numFields = $value;
    return $this;
}

public function getNumFields() {
    return $this->_numFields;
}

public function setDataArray($value) {
    $this->_dataArray = $value;
    return $this;
}

public function getDataArray() {
    return $this->_dataArray;
}

public function setHeaderArray($value) {
    $this->_headerArray = $value;
    return $this;   
}

public function getHeaderArray() {
    return $this->_headerArray;
}


public function getEmpty() {
    return $this->_empty;
}

public function __get($propertyName) {
    $method = 'get' . ucfirst($propertyName);
    if (!method_exists($this, $method)) {
        $method = 'is' . ucfirst($propertyName);
        if(!method_exists($this, $method)) {
            throw new Exception('Invalid read property ' . $propertyName . ' in ' . get_class($this) . ' class.');
        }
    }
    return $this->$method;
}

public function __isset($propertyName) {
    try {
        $_value = $this->__get($propertyName);
        return !empty($_value);
    } catch (Exception $e) {
        /* if a property isn't readable it isn't set*/
        return false;
    }
}

public function __set($propertyName, $value) {
    $method = 'set' . ucfirst($propertyName);
    if ('mapper' == $method || !method_exists($this, $method)) {
        throw new Exception('Invalid write property ' . $propertyName . ' in ' . get_class($this) . ' class.');
    }
    return $this->$method($value);
}



}
?>

在我的index.php中,我实例化了两个bean:

$peopleBean = new ResultBean("Participants");
$countryBean = new ResultBean("Countries");

并希望将它们用作以下内容:

$beanArray[0] = $peopleBean;
$beanArray[1] = $countryBean;


for($i = 0; $i < 2; $i++){

    $resultArray = array();
    $bean = $beanArray[$i];

    echo "bean label :" . $bean->label . " <br/>";
    etc.

加载页面时出现以下错误消息:

  

致命错误:未捕获的异常'异常',消息'无效读取   ResultBean类中的属性getLabel。'在路径 /resultBean.php:103

     

堆栈跟踪:#0 路径 /resultBean.php(106):   ResultBean-&gt; __ get('getLabel')#1 path /index.php(123):   在路径 /resultBean.php中抛出ResultBean-&gt; __ get('label')#2 {main}   在第103行

在我读过的所有页面中,都无法使用java风格的类转换$bean = (ResultBean) $beanArray[$i]

我该如何解决这个问题?谢谢=)

注意:我使用__autoload()函数的覆盖来加载类,它可以正常工作。

NOTE2 :我确实在$peopleBean->numRows = *smthing*之外进行了调用(在数组之外),它似乎也有效。

1 个答案:

答案 0 :(得分:6)

您的__get实施错误。

而不是:

return $this->$method;

你想要这个:

return $this->$method();

或者这个:

return call_user_func(array($this, $method));

目前,代码正确检测到您有getLabel方法,但之后它尝试读取getLabel属性,因此再次调用__get,找不到{ {1}}方法和抛出。

另外两个提示:

  1. 使用getGetLabel代替foreach
  2. 您不需要在PHP中将对象强制转换为任何内容;只需调用方法。
相关问题