Files
23cm/common/MobileHelper.php
2026-01-25 18:18:09 +08:00

18 lines
401 B
PHP

<?php
namespace app\common;
class MobileHelper
{
public static function isValidChinaMobile($remarkDict): bool
{
if (is_string($remarkDict) && $remarkDict) {
$val = json_decode($remarkDict, true);
if (isset($val['是否为隐私号']) && $val['是否为隐私号'] == '是') {
return true;
}
}
return false;
}
}