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


How to use html edit character (✎) instead of directly use "edit" in cakephp?

我有这个链接

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

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

请帮忙。

使用此代码

&#x270E;

而不是编辑文本

将产生✎图标

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

你可能想参考这个: CakePHP 3 创建链接

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