我在树枝上有过滤器:
class AcmeExtension extends \Twig_Extension
{
public function getFilters()
{
return array(
new \Twig_SimpleFilter('price', array($this, 'priceFilter')),
);
}
public function priceFilter($number, $decimals = 0, $decPoint = '.', $thousandsSep = ',')
{
$price = number_format($number, $decimals, $decPoint, $thousandsSep);
$price = '$'.$price;
return $price;
}
}
但是如何在其他过滤器中调用价格过滤器?在 symfony 2.0 中声明过滤器 'price' => new \Twig_Filter_Method($this, 'priceFilter')
并且可以从另一个过滤器中调用它。
谢谢和对不起我的英语