1

我在我的程序中使用以下代码。

class A {
function __call($fname,$arguments)
{
    $methods = array('get', 'set');
    foreach ($methods as $method) {
        if(strstr($fname,$method))
        {
            $fname = str_replace($method, "", $fname);
            $function = $method."method";
            if($method == "set")
            {
                call_user_func_array("setmethod", array($fname,$arguments[0])); 
            }
            if($method == "get")
            {
                call_user_func_array("getmethod", $fname);
            }
            break;
        }
    }
}

function setmethod ($key,$value)
{
    $this->$key = $value;
}

function getmethod($key)
{
    return $this->$key;
}
}

我正在像这样警告

“警告:call_user_func_array() 期望参数 1 为有效回调,未找到函数‘setmethod’或无效函数名”

并且程序停止了,没有进一步显示。

4

1 回答 1

0

您正在尝试调用全局函数,而您需要调用对象成员方法。

使用数组来呈现回调:

call_user_func_array(array($this, "setmethod"), array($fname,$arguments[0])); 

如同:

call_user_func_array(array($this, "getmethod"), $fname);
于 2013-08-26T07:30:17.447 回答