0

我有一个模型,我想在表单的下拉列表中使用所有变量。

protected $_scheduledTime;
protected $_isLive;
protected $_isQueued;
protected $_url;

我希望,这样的事情会奏效,但它没有

public function getMethods() {
    $methods = getclass_methods($this);
    return $methods;
}

调用它会返回这个致命错误:

致命错误:调用未定义的函数 getclass_methods()

我想要实现的是更新模型时自动更新的表单选项(这可能非常频繁)

我可能已经回答了我自己的问题,因为我将在模型中构建一个数组,该数组在调用时返回......但如果已经有一种方法可以做到这一点,那么将不胜感激。

先感谢您。

4

2 回答 2

2
get_declared_classes() // gives you all declared classes
get_class_methods() // gives you all methods of class
get_class_vars() // gives you properties of the class
get_object_vars() // gives you propertis of an object
get_parent_class()  // gives you parent class of the current class
于 2013-01-28T11:32:35.370 回答
1

该函数是get_class_methods,而不是 getclass_methods (缺少'_')

于 2013-01-28T11:28:54.567 回答