DataService.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\company\service;
  15. /**
  16. * 企业数据处理服务
  17. * Class DataService
  18. * @package app\company\service
  19. */
  20. class DataService
  21. {
  22. /**
  23. * 格式化MAC地址信息
  24. * @param string $mac
  25. * @return string
  26. */
  27. public static function applyMacValue(&$mac)
  28. {
  29. $mac = strtoupper(str_replace('-', ':', $mac));
  30. if (preg_match('/([A-F0-9]{2}:){5}[A-F0-9]{2}/', $mac)) {
  31. return $mac;
  32. } else {
  33. return false;
  34. }
  35. }
  36. }