doudou8783 2012-02-24 17:43
浏览 104
已采纳

用'gettext'回显字符串时有没有办法隐藏html标签?

I wonder if there is a way to hide html tags when echoing a string with php gettext function.

This is what I got and I want to strip html tags from string before putting them to .po file.

<?=_('You must be logged in to add a link.<br />
If you already have a account, 
<a href="#" name="Log In">click here</a> to log in or 
<a href="#" name="Register">join us</a> now!'); ?>

This puts string to .po file like this:

You must be logged in to add a link.<br />  If you already have a account, <a href="#" name="Log In">click here</a> to log in or <a href="#" name="Register">join us</a> now!

Translations of my website will be publicly editable (with Pootle) so I wonder is there any way to hide html tags from public? is there anything like this:

You must be logged in to add a link. If you already have a account, click here to log in or join us now!
  • 写回答

1条回答 默认 最新

  • dongyong3590 2012-02-24 17:54
    关注

    There is no real way to hide them and be able to reinsert them after the translation, you could use character position map, but after the translation the character length to the html tags would change.

    If you absolutely want to avoid html tags what you could do is to leave the breaks in and convert them to new lines if needed for transalators then use individual translations for text inside html tags for example;

    <?=_('You must be logged in to add a link.<br /> If you already have a account,') ?>
    <a href="#" name="Log In"><?= _('click here') ?></a> <?= _('to log in or') ?>
    

    '); ?>

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

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致