YII如何调用函数?

发布于 2025-01-06 22:53:50 字数 137 浏览 0 评论 0原文

我需要知道如何调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳根太软 2025-01-13 22:53:50

您是否尝试从另一个控制器调用该函数?

在标准 yii 安装中,所有控制器都扩展 Controller 类作为基类。因此,您可以将该功能放在那里,所有控制器都可以访问它。

protected/components/Controller.php

或者您可以通过创建行为来附加函数:
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.

protected/components/Controller.php

Or you could attach function by creating a behaviour:
http://www.yiiframework.com/doc/guide/1.1/en/basics.component#component-behavior

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文