thinkphp3.2.3 自動驗證 正則驗證

<?php
    namespace Home1\Model;
    use Think\Model;
    class ShopYuyueInfoModel extends Model {
        // protected $_validate = array(                   
        protected $_validate = array(               
            array('name','require','姓名必填..1!'), // 必填
            array('tel','/^1[34578]\d{9}$/','手機號碼不對..1!',0,'regex',3),// 必填
        );
        
        
    }
相關文章
相關標籤/搜索