doucu9677 2017-06-02 09:30
浏览 33
已采纳

Cakephp:将链接添加到echo中

I have such a line of code

<?php echo __('This is text and the word TEXT has to be a link'); ?>

Is there any good trick to link the word "TEXT" to another href address? maybe without changing the entire structure? As I am using the i18n translation as the website is using 3 languages I want to keep the changes as minimal as possible.

Thanks in advance!

  • 写回答

1条回答 默认 最新

  • dongyan5815 2017-06-02 09:37
    关注

    You could try to pass your link as an argument to __() function:

    <?= __('This is text and the word {0} has to be a link', $this->Html->link(...)) ?>
    

    More info can be found here: https://book.cakephp.org/3.0/en/core-libraries/internationalization-and-localization.html#using-variables-in-translation-messages

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?