在Cakephp的控制器中使用助手

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Cakephp的控制器中使用助手相关的知识,希望对你有一定的参考价值。

  1. class UsersController extends AppController {
  2. function index() {
  3. App::import('Helper', 'html'); // loadHelper('Html'); in Cakephp 1.1.x.x
  4. $html = new HtmlHelper();
  5. debug($html->link('Cake!', 'http://cakephp.org'));
  6. }
  7. }

以上是关于在Cakephp的控制器中使用助手的主要内容,如果未能解决你的问题,请参考以下文章

如何在 cakePHP 的控制器中设置分页器页面

如何在控制器中使用辅助函数?

在 CakePHP 中使用控制器之外的组件

cakephp 在组件中使用控制器

如何在 CakePHP 控制器中使用多个模型

在模型中使用 cakephp 组件