在 CakePHP 1.2 中使用 HtmlHelper 的西班牙重音标记
Spanish accent mark using HtmlHelper in CakePHP 1.2
我正在 https://book.cakephp.org/1.2/en/The-Manual/Core-Helpers/HTML.html#link 阅读文档,我看到了这个:
link(string $title, mixed $url = null, array $htmlAttributes = array(), string $confirmMessage = false, boolean $escapeTitle = true)
string $title
是我想放置带有西班牙重音符号的文本的地方。文本是 aquí
,所以我尝试使用 aquí
但它没有用。使用 aquí
也不起作用。在第一种情况下,结果是这个网站正好打印 aquí
。在第二种情况下,文本甚至根本没有显示。如何使用 CakePHP 1.2 中的 HtmlHelper 打印西班牙重音符号或一般情况下的西班牙特殊字符?谢谢。
现在对我来说它是这样工作的:
<span class="bold">
<?php echo $html->link('aquí', array('controller' => 'products', 'action' => 'change_product'), array('target' => '_self', 'class'=>'js-thickbox', 'escape' => false)); ?>
</span>
我正在 https://book.cakephp.org/1.2/en/The-Manual/Core-Helpers/HTML.html#link 阅读文档,我看到了这个:
link(string $title, mixed $url = null, array $htmlAttributes = array(), string $confirmMessage = false, boolean $escapeTitle = true)
string $title
是我想放置带有西班牙重音符号的文本的地方。文本是 aquí
,所以我尝试使用 aquí
但它没有用。使用 aquí
也不起作用。在第一种情况下,结果是这个网站正好打印 aquí
。在第二种情况下,文本甚至根本没有显示。如何使用 CakePHP 1.2 中的 HtmlHelper 打印西班牙重音符号或一般情况下的西班牙特殊字符?谢谢。
现在对我来说它是这样工作的:
<span class="bold">
<?php echo $html->link('aquí', array('controller' => 'products', 'action' => 'change_product'), array('target' => '_self', 'class'=>'js-thickbox', 'escape' => false)); ?>
</span>