摘要:
class RegexConst { const REGEX_MOBLIE_86 = '/^1(3|4|5|7|8)\d{9}$/';//中国手机号 const REGEX_MOBLIE_852 = '/^(5|6|9)\d{7}$/';//香港手机号 const REGEX_MOBLIE_1 = '/^\d{10}$/';//美国手机号 const REGEX_... 阅读全文
摘要:
这些都是工作中常用的 前几年写过 但没有记录的习惯,后边有要用到麻烦,现在记录下 以后直接拿来用 阅读全文
摘要:
public static function utf8_to_gbk($utfstr) { return iconv("utf-8", "gbk//IGNORE", $utfstr); } static function gbk_to_utf8($gbstr) { return mb_convert_encoding($gbstr, "utf-8", "gbk")... 阅读全文
摘要:
static function utf8_to_unicode($c) { switch(strlen($c)) { case 1: return ord($c); case 2: $n = (ord($c[0]) & 0x3f) > 6); $... 阅读全文