0

如何__( )在 CakePHP 中使用转换变量/自定义值?比如,字符串、整数或十进制值?

例如:

__('You have $16.52 in your wallet')

我尝试使用sprintf但不起作用,就像这样:

sprintf(__("Table %s can't have status changed to Busy. Please check the number and try again"), $table_num)
4

1 回答 1

1

使用 >= 2.0:

__('You have %s in your wallet', '$16.52');

因为 __() 现在已经内置了 %s 替换。

于 2013-07-25T14:35:11.610 回答