如何使用html编辑字符(✎)而不是直接使用cakephp中的“编辑”?

时间:2016-07-12 04:47:56

标签: php html5 cakephp-3.0

我有这个链接

<?= $this->Html->link(__('Edit'), ['action' => 'edit', $o->id]) ?>. 

我想使用编辑html字符(✎)而不是编辑

请帮忙。

2 个答案:

答案 0 :(得分:1)

使用此代码

&#x270E;

代替编辑文本

将显示✎图标

答案 1 :(得分:0)

只需添加“escape”参数并将其设置为false。

您可能想要参考:CakePHP 3 creating links

<?php 
     echo Html->link(__('&#x270E;'), 
         ['action' => 'edit', $o->id],
         ['escape' => false]
 ) ?>