我编写了一个创建 6 位数字的函数。
如何在不使用 yii2 中的模型的情况下手动验证这个数字?
我认为这很有用:
<?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;
}
?>