j解決短信驗證ip限制
/sms.php 下注釋這里
if(in_array(real_ip(), $ip_array)) {
// $result['error'] = 6;
// $result['message'] = $_LANG['invalid_mobile_phone'];
// die($json->encode($result));
// }
短信記錄:
ecs_verifycode
修改 評論用戶名 n..n格式
只支持中英文數組符號組合。其他不支持。
自定義函數
include/lib_base.php
function str_first($str="")
{
$s=mb_substr($str,0, 1,'utf-8').'...'.mb_substr($str,-1, 1,'utf-8');
return $s;
}
自定義標簽:
include/cls_template.php
case 'strip_tags':
$p = 'strip_tags(' . $p . ')';
break;
case 'str_first':
$p='str_first('.$p.')';
break;
注意所有移動端的文件在對應的mobile下。不要改錯了哦!