我有一个控制器 IndexController.php,其中的操作是这样的
class IndexController extends CustomControllerAction {
public function preDispatch() {
if (!$this->view->authenticated) {
$this->_redirect('/users/login');
}
}
public function indexemailAction() {
//somecode which calculates certain things
}
}
现在,我需要使用独立的 php 文件在 IndexController.php 中调用操作“indexmailAction”
php文件是indextest.php
<?php
//Need to write some code to call indexmailAction in IndexController.php
?>
我应该在这个文件中写什么......
提前致谢