
如果解决XAMPP无法正常运行问题
__ngettext ( $args )
__ngettext: 这是一个用于翻译复数字符串的函数。它接收一个单数和复数的字符串,以及一个数字。如果数字是1,它返回单数字符串,如果数字是其他,它返回复数字符串。
根据金额检索复数或单数形式。
function __ngettext( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore _deprecated_function( __FUNCTION__, '2.8.0', '_n()' ); return _n( ...$args ); }