Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Drupal 的 t() 函数中打印 % 百分比符号?
<?=t('% Daily Value') ?>
Drupalt()函数使用%,@和!作为变量引用运算符,区别在于在字符串中替换时对变量执行的替换类型。
t()
%
@
!
问题是,为了使它起作用,您必须在t(). 在您的示例中,您没有提供替换值数组,因此不会尝试替换。
您的%标志应该可以通过,而无需进一步逃脱。