YII如何调用函数?
我需要知道如何调用 PGSQL 数据库存储过程需要参数 来自 yii 控制器并向其传递参数。请任何人提供 我(也许还有社区)有一个简短的教程,包括代码片段 关于如何处理这种情况或指导我找到可以获取信息的来源 与该主题相关的信息来自?
提前谢谢。
I'm in need of knowing how to call a PGSQL db stored procedure REQUIRING PARAMETERS
from a yii controller and passing it the parameters. Could please any one provide
me (maybe also the community) with a short tutorial including code snippets
about how to deal with this situation or direct me to sources where I can get the
information related to this topic from?
Thx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试从另一个控制器调用该函数?
在标准 yii 安装中,所有控制器都扩展 Controller 类作为基类。因此,您可以将该功能放在那里,所有控制器都可以访问它。
或者您可以通过创建行为来附加函数:
http://www.yiiframework.com/doc/guide /1.1/en/basics.component#component-behavior
Are you trying to call the function from another controller?
In standard yii installation all controllers extend the Controller class as a base class. Therefore you can put the function in there and it will be accessible to all controllers.
Or you could attach function by creating a behaviour:
http://www.yiiframework.com/doc/guide/1.1/en/basics.component#component-behavior