答案 0 :(得分:0)
无法在Zend_Translate中记录translate()调用,但您可以创建自己的帮助程序,将所有对原始translate()帮助程序的调用放在一起,并根据您的需要使用它。
以下是辅助方法的一些示例:
/**
* Translates provided message Id
*
* You can give multiple params or an array of params.
* If you want to output another locale just set it as last single parameter
* Example 1: translate('%1\$s + %2\$s', $value1, $value2, $locale);
* Example 2: translate('%1\$s + %2\$s', array($value1, $value2), $locale);
*
* @param string $messageid Id of the message to be translated
* @return string Translated message
*/
public function t_($messageid = null)
{
/**
* Process the arguments
*/
$options = func_get_args();
array_shift($options);
$count = count($options);
$locale = null;
if ($count > 0) {
if (Zend_Locale::isLocale($options[($count - 1)], null, false) !== false) {
$locale = array_pop($options);
}
}
if ((count($options) === 1) and (is_array($options[0]) === true)) {
$options = $options[0];
}
/**
* Get Zend_Translate_Adapter
*/
$translator = $this->translate() // get Zend_View_Helper_Translate
->getTranslator(); // Get Zend_Translate_Adapter
/**
* Proxify the call to Zend_Translate_Adapter
*/
$message = $translator->translate($messageid, $locale);
/**
* If no any options provided then just return message
*/
if ($count === 0) {
return $message;
}
/**
* Apply options in case we have them
*/
return vsprintf($message, $options);
}
并使用它:
echo $this->t_('message-id', $param1, $param2);
而不是
echo $this->translate('message-id', $param1, $param2);
然后,您可以向该方法添加任何自定义功能,以记录您需要的信息。
这个解决方案不是很快,但可以让你做到这一点。
我在尝试解决此问题时创建了此方法: