LoginSignup
24
29

More than 5 years have passed since last update.

CakePHP3でURLリンクを書く方法

Last updated at Posted at 2015-02-09

Cake1,Cake2とやりかたが変わっていたのでメモ。

Cake3でURLリンクを書く方法は2つあります。(他にもあるかもしれないです)

① Htmlヘルパーを使う方法(リンクタグ全体をヘルパーで作成)

Template/~/*.ctp
<?php echo $this->Html->link('タスク詳細ページ', ['controller'=>'Task', 'action'=>'detail', 'taskId' => 77], ['class'=>'something']); ?>

② Urlヘルパーを使う方法(URL部分だけヘルパーで作成)

Template/~/*.ctp
<a href="<?php echo $this->Url->build(['controller'=>'Task', 'action'=>'detail', 'taskId' => 77]); ?>" class="something">タスク詳細ページ</a>

個人的には②の方法の方が誰にでも使いなれたHTMLタグで書ける部分が多くなるので、②の方法で記述しています(クラス指定などURLの部分以外はCakeを分かってない人でも読める)。

24
29
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
29