Kohana 3 自定义过滤器 有效的 PHP 回调?
是否可以使用函数作为自定义过滤器?例如,而不是:
$validate->filter('myfield', 'trim');
如果我尝试这样做:
$validate->filter('myfield', 'myfunc');
它会说函数 myfunc 不存在。 我注意到过滤器的第二个参数应该是“有效的 PHP 回调”,所以我需要对我自己的函数做一些特殊的事情吗?
Is it possible to use a function as a custom filter? For example, instead of:
$validate->filter('myfield', 'trim');
If I try to do:
$validate->filter('myfield', 'myfunc');
It will say Function myfunc does not exist.
I noticed the second param for filter is supposed to be a "valid PHP callback", so do I need to do anything special with my own function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建
myfunc($value)
函数,该函数将返回过滤后的值。您还可以添加额外的参数:you must create
myfunc($value)
function, which will return a filtered value. Also you can put additional params: