当前位置: 首页>>代码示例>>PHP>>正文


PHP Formo::into_array方法代码示例

本文整理汇总了PHP中Formo::into_array方法的典型用法代码示例。如果您正苦于以下问题:PHP Formo::into_array方法的具体用法?PHP Formo::into_array怎么用?PHP Formo::into_array使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Formo的用法示例。


在下文中一共展示了Formo::into_array方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: add_rule

 /**
  * add_rule method. Adds a rule to the object
  *
  * @return  object
  */
 public function add_rule($rule, $error_msg = '')
 {
     if ($rule == 'required') {
         $this->required = TRUE;
         $this->required_msg = $error_msg ? $error_msg : $this->required_msg;
     }
     if ($this->rule) {
         Formo::into_array($this->rule);
     }
     if (is_array($rule)) {
         $this->rule = array_merge($this->rule, $rule);
     } else {
         $error_msg = $error_msg ? $error_msg : $this->error_msg;
         $this->rule[] = array('rule' => $rule, 'error_msg' => $error_msg);
     }
 }
开发者ID:bicho44,项目名称:imglistados,代码行数:21,代码来源:Formo_Group.php

示例2: validate_this

 protected function validate_this()
 {
     $this->strip_error();
     $done_already = FALSE;
     if ($this->value and $this->rule) {
         foreach (Formo::into_array($this->rule) as $rule) {
             if (!$this->_do_rule($rule)) {
                 $this->error = $this->error_msg;
                 $this->error = (is_array($rule) and isset($rule['error_msg'])) ? $rule['error_msg'] : $this->error_msg;
                 break;
             }
         }
     } elseif ($this->required and strtoupper($this->required !== 'FALSE') and strtoupper($this->required) !== 'F' and !Formo::has_value($this->value)) {
         $this->error = $this->required_msg;
     }
 }
开发者ID:carriercomm,项目名称:billing_cart,代码行数:16,代码来源:Formo_Element.php


注:本文中的Formo::into_array方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。