12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- return [
- // 'adminEmail' => 'admin@example.com',
- 'site_pfg'=>'易购房后台管理系统',
- // 'site_yg'=>'',
- // 'site_jf'=>'吉房后台管理系统',
- // 'site_tf'=>'淘房后台管理系统',
- 'match'=>[
- 'password'=>'/^[a-zA-Z\d_]{6,32}+$/', //密码
- 'mobile'=>"/^1[23456789]\d{9}$/", //手机
- ],
- 'cacheKey'=>[
- 'user_pwd'=>'usererror',
- 'user_token'=>'usertoken',
- ],
- 'state'=>[
- 1=>'正常',
- 2=>'禁用',
- ],
- 'RecommendedState'=>[
- 1=>'不推荐',
- 2=>'推荐'
- ],
- 'UserSuperadministrator'=>'admin', //超级管理员
- 'HousePriceUnit'=>[
- "元/㎡",
- "元/㎡起",
- "万/套",
- "万/套起",
- "亿/套",
- ],
- 'house_view'=>[
- 1=>'上架',
- 2=>'下架',
- ],
- 'houseCommentReadState' => [
- 1 => "未读",
- 2 => "已读",
- ],
- 'newsStatus'=>[
- 1=>'Y',
- 2=>'N'
- ],
- 'watermark_img'=> [ //水印地址,和模板
- 'url'=>'img/watermark/',
- // 'module1'=>'1.png',
- ],
- 'TinifyApiKey'=> 'hJTC_ufj_ngLLswbmNi75-em6nvbnm-s', //图片压缩API 秘钥
- 'tinifyUrl'=>'/tinifyimg/imgcompress', //异步压缩图片的路径
- ];
|