1

我正在尝试以这种方式使用动作中的助手:

sfContext::getInstance()->getConfiguration()->loadHelpers(array('I18N', 'Asset', 'Url'));
echo image_tag('bullet_red.png');
echo link_to('Ver detalles', 'ver-detalles/' . $record->getIdregistros(), 'class="btn btn-success btn-mini"');

但我得到这个错误:

致命错误:在第 333 行的 /var/www/html/monitor/lib/vendor/symfony/lib/helper/AssetHelper.php 中调用未定义函数 _parse_attributes()

为什么?

4

1 回答 1

6

_parse_attributes() 函数位于 Tag Helper 中。

因此您还必须导入 Tag Helper

sfContext::getInstance()->getConfiguration()->loadHelpers(array('I18N', 'Asset', 'Url', 'Tag'));
于 2013-07-09T15:49:15.170 回答