EModel.php 481 B

12345678910111213141516171819202122232425
  1. <?php
  2. //model 的重写基类
  3. namespace app\common\models;
  4. use Yii;
  5. use yii\base\Model;
  6. class EModel extends Model
  7. {
  8. /**
  9. * 获取模型验证的第一个错误
  10. */
  11. public function returnFirstError()
  12. {
  13. $errors = $this->getErrors();
  14. if(!empty($errors)){
  15. $firstError = array_splice($errors, 0,1);
  16. $attribute = key($firstError);
  17. return $this->getFirstError($attribute);
  18. }
  19. return null;
  20. }
  21. }