0

我编写了一个创建 6 位数字的函数。

如何在不使用 yii2 中的模型的情况下手动验证这个数字?

4

1 回答 1

0

我认为这很有用:

<?php
  public function actionValidation(){
    $model = new \yii\base\DynamicModel(['number']);
    $model->addRule('number', 'integer', ['message'=>'should be a number']);
    $model->number = $this->yourFunction();
    Yii::$app->response->format = Response::FORMAT_JSON;
    return ActiveForm::validate($model);
 }

  public function yourFunction(){
    return 6-digits-number;
 }
?>
于 2016-11-08T19:05:51.960 回答