我正在尝试在这样的自定义树枝过滤器中使用翻译
public function formatTime($timestamp)
{
$str = date('j %\m%',$timestamp);
$str = str_replace($str, '%m%', $this->get('translator')->trans('month'.date('m', $timestamp) ) );
return $str;
}
offcourse get 是未知功能。我应该让我的扩展了解环境还是简单地请求翻译类以使其可用?