CodeIgniter 中的可选参数
我正在尝试在 CodeIgniter 控制器中编写一个可以接受可选参数的函数。但是,我总是收到缺少参数警告。我并不是试图抑制警告 - 我试图将参数声明为可选(如果它们不存在的话,也许它们可能是空字符串,或者其他)。
我缺少什么?
谢谢
马拉
I'm trying to write a function in a CodeIgniter controller which can take optional parameters. However, I always get Missing Argument warnings. I'm not trying to suppress the warnings - I'm trying to declare the parameters as optional (maybe they could be empty strings if they don't exist, or something).
What is it I'm missing?
Thanks
Mala
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试过这个吗?
have you tried this?
例如,假设您有一个如下所示的 URI:
您的方法将传递 URI 段 3 和 4 (“hello”和“world”):
class MyController extends CI_Controller {
}
参考:https://codeigniter .com/user_guide/general/controllers.html
For example, let’s say you have a URI like this:
Your method will be passed URI segments 3 and 4 (“hello” and “world”):
class MyController extends CI_Controller {
}
Reference: https://codeigniter.com/user_guide/general/controllers.html