芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/cloud.pulsehost.co.uk/system/Utils/Validate.php
PasswordMinLength; $bPasswordMustBeComplex = $oSettings->PasswordMustBeComplex; if (strlen($mValue) < $iPasswordMinLength) { $bResult = false; } elseif ($bPasswordMustBeComplex && (!preg_match('([0-9])', $mValue) || !preg_match('([!,%,&,@,#,$,^,*,?,_,~])', $mValue))) { $bResult = false; } return $bResult; } }