PHP 在Cakephp中的Controller中使用帮助器

Posted

tags:

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

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

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

使用单独的Controller名称空间时CakePHP 3路由

PHP CakePHP Controller ::编辑方法

Cakephp 在帮助器中调用组件方法

在CakePHP 3中放置自定义PHP类的位置?

CAKEPHP 1.2/1.3 中的前缀路由和插件

cakephp3.7 测试中的 CSRF 令牌不匹配