我目前正在重新编码一些代码。它来自我目前正在运行的项目。
class store extends TModel{
public function render_cart( $a=0, $b=0, $c=0 ){
echo '<pre>'; var_dump( $a=0, $b=0, $c=0 ); echo '</pre>';
}
}
class TController extends TObject{
function getModel($model=''){
include( TPATH_COMPONENT.'models'.DS.$model.'.php' );
$this->_model = new $model;
return false;
}
function get($method=''){
$args = func_get_args();
return $this->model->$method( $args );
}
}
$controller->getModel('store');
$cart = $controller->get('render_cart', 1, 2, 3 );
我想将参数从 TController::get 转移到 store::render_cart( $a=0, $b=0, $c=0 ) 作为参数。谢谢你的帮助。