我有这个链接
<?= $this->Html->link(__('Edit'), ['action' => 'edit', $o->id]) ?>.
我想使用编辑html字符(✎)而不是编辑。
请帮忙。
答案 0 :(得分:1)
使用此代码
✎
代替编辑文本
将显示✎图标
答案 1 :(得分:0)
只需添加“escape”参数并将其设置为false。
您可能想要参考:CakePHP 3 creating links
<?php
echo Html->link(__('✎'),
['action' => 'edit', $o->id],
['escape' => false]
) ?>