我有一个模型,我想在表单的下拉列表中使用所有变量。
protected $_scheduledTime;
protected $_isLive;
protected $_isQueued;
protected $_url;
我希望,这样的事情会奏效,但它没有
public function getMethods() {
$methods = getclass_methods($this);
return $methods;
}
调用它会返回这个致命错误:
致命错误:调用未定义的函数 getclass_methods()
我想要实现的是更新模型时自动更新的表单选项(这可能非常频繁)
我可能已经回答了我自己的问题,因为我将在模型中构建一个数组,该数组在调用时返回......但如果已经有一种方法可以做到这一点,那么将不胜感激。
先感谢您。