如何在 Symfony 1.4 中实现助手?
我想创建自己的助手,但在 Google 上找不到 Symfony 1.4/Doctrine 的任何帮助。
我想这与在 lib/helpers/
中创建 myClassHelper.class.php
或其他东西有关,但我不知道要实现什么,或者如果具体的话方法必须被重写。
任何帮助将不胜感激!
I'd like to create my own helper but can't find any help on Google for Symfony 1.4/Doctrine.
I guess it has something to do with creating a myClassHelper.class.php
in lib/helpers/
or something, but I don't know what to implement, or if specific methods have to be overridden.
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 1.4 中的助手没有任何改变。来自文档(尽管是1.2) :
所以你只需将普通函数放在普通文件中(与类或方法无关)。这些函数可以采用任意参数(您决定它们创建 HTML 所需的参数)并且必须返回 HTML。
例如
MyHelper.php
并在模板中:
I don't think that anything changed regarding the helpers in 1.4. From the documentation(although 1.2):
So you just put normal functions in a normal file (has nothing to do with classes or methods). The functions can take arbitrary parameters (you decide what they need to create the HTML) and the have to return HTML.
E.g.
MyHelper.php
and in the template: