How do I call the trim function on a Kohana 3.2 validation object?

大兔子大兔子 提交于 2019-12-05 18:25:34

Validation objects are read only as of 3.2. Filter the input before creating the Validation object like so:

$post = array_map('trim', $this->request->post()); // $post[key] = expression; if it is for one specific value

$post = Validation::factory($post);

// set validation rules etc

In addition to Darsstar reply - if you need recursive version of array_map, check out Arr::map function:

$post = Arr::map('trim', $this->request->post());
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!