You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
552 B
22 lines
552 B
<?php
|
|
namespace Wiggins\MyProject\Example;
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
require __DIR__.'/../vendor/yiisoft/yii2/Yii.php';
|
|
use Wiggins\MyProject\UserInput;
|
|
|
|
|
|
$model=new UserInput(['scenario'=>'login']);
|
|
|
|
$inputDate=[
|
|
"name" => "kuangweijian",
|
|
"password" => "123456546",
|
|
];
|
|
$model->load(["UserInput"=>$inputDate],"UserInput");
|
|
|
|
if($model->validate()){
|
|
echo "login succ".PHP_EOL;
|
|
}else{
|
|
echo "login failed".PHP_EOL;
|
|
print_r($model->getErrors());
|
|
}
|
|
?>
|