1. 英語と数字で構成される文字列:
if(!preg_match("/^(([a-z]+[0-9]+)|([0-9]+[a-z]+))[a-z0-9]*$/i",$spend)){ return $this->_ajaxMessage(1, '模板id必须由字母和数字组成', array()); }
?2. 数字、英語の文字で構成される文字列。およびアンダースコア:
if(!preg_match("/^[a-zA-Z0-9_]*$/i",$spendCancel)){ return $this->_ajaxMessage(1, '您输入的消费撤销通知模板id不合法', array()); }
?