You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$answer = Interact::ask('Please input your name?', null, function ($answer) {
if (!preg_match('/\w+/', $answer)) {
Interact::error('The name must match "/\w+/"');
returnfalse;
}
returntrue;
});
// no default value$answer = Interact::limitedAsk('please input you age?', null, function($age)
{
if ($age<1 || $age>100) {
Interact::error('Allow the input range is 1-100');
returnfalse;
}
returntrue;
});