0

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

我有以下 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 path /resultBean.php(106): ResultBean->__get('getLabel') #1 path /index.php(123): ResultBean->__get('label') #2 {main} throw in第 103 行的路径/resultBean.php

从我读过的所有页面中,不可能使用 java 风格的 class-casting $bean = (ResultBean) $beanArray[$i]

我怎样才能解决这个问题 ?谢谢你=)

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

注意2:我确实会(在数组之外)进行调用,$peopleBean->numRows = *smthing*而且它似乎也可以工作。

4

1 回答 1

6

你的__get实现是错误的。

而不是这个:

return $this->$method;

你要这个:

return $this->$method();

或这个:

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

就目前而言,代码正确地检测到您有一个getLabel方法,但随后它尝试读取一个getLabel属性,因此__get再次调用,没有找到getGetLabel方法并抛出。

两个额外的提示:

  1. 使用foreach而不是for.
  2. 您不需要将对象转换为 PHP 中的任何内容;只需调用方法。
于 2013-06-01T20:30:14.023 回答