# extend.VerifyAction **Repository Path**: php300/extend.VerifyAction ## Basic Information - **Project Name**: extend.VerifyAction - **Description**: php300framework扩展插件:数据验证类库 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-11 - **Last Updated**: 2021-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # extend.VerifyAction php300framework扩展插件:数据验证类库 下载类库文件放到框架目录的`Extend/Class`下即可 演示: ``` extend('VerifyAction.class.php'); if(\VerifyAction::isMobile($userName) === false) return ['code' => 101 , 'msg' => '手机号不正确']; if(\VerifyAction::isEmpty($Password) === false) return ['code' => 101 , 'msg' => '密码不得为空']; ```