INFINITY BLUE
msgbartop
ご訪問ありがとうございます。『INFINITY BLUE』は、WEB+DB開発の情報や仕事の実績などを紹介しています。
msgbarbottom

16 12月 07 備忘録: CakePHP コントローラーからヘルパーを読み出す

「CakePHP コントローラーからヘルパーを読み出す方法」を訊かれたので、備忘録として掲載します。

情報元:cakebaker:How to use a helper in a controller


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



Leave a Comment