如何添加自定义验证,codeigniter

发布于 2024-12-09 21:45:15 字数 518 浏览 0 评论 0原文

您好,我正在使用 codeigniter ,我使用 codeigniter 表单验证。我有一个名为 price 的输入,

<input id="Price"  name="price" class="textbox-small Verdana11-424039" type="text" name=""
 tabindex="1900" />

我像这样验证价格

this->form_validation->set_rules('price', 'Price', 'trim|required'); 

,但我想验证价格以仅采用数字、逗号和点

如下所示。

1000
1000.00
1,000.00

如何通过 codeigniter 完成这样的自定义验证,请帮忙......

hi i am using codeigniter , i use codeigniter form validation . i have a input called price

<input id="Price"  name="price" class="textbox-small Verdana11-424039" type="text" name=""
 tabindex="1900" />

i validate price like this

this->form_validation->set_rules('price', 'Price', 'trim|required'); 

but i want to validate price to take only numbers , commas and dots

like this .

1000
1000.00
1,000.00

how can a custom validation like this accomplished by codeigniter , please help......

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

诠释孤独 2024-12-16 21:45:15

在 codeigniter 中使用表单验证时有一个回调函数选项。您可以在控制器内编写自己的函数,使用正则表达式检查您的价格,然后您可以在设置表单验证规则时将该函数/方法设置为回调函数名称。

您可以在 http://codeigniter.com/user_guide/libraries/form_validation.html# 阅读更多信息回调

There is a callback function option when using form validation in codeigniter. You can write your own function inside the controller which checks for your price using regex, and then you can set that function/method as the callback function name when you set form validation rules.

You can read more at http://codeigniter.com/user_guide/libraries/form_validation.html#callbacks

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