Network.php 550 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Network extends Model
  5. {
  6. // 自动写入时间戳字段
  7. protected $autoWriteTimestamp = true;
  8. public static function getNetWorkString($noField){
  9. $onlyPrefix=substr($noField,0,3);
  10. $onlyPrefixPrivate=substr($noField,0,4);
  11. $onlyPrefixOther=substr($noField,0,5);
  12. return self::where('no_field',$onlyPrefix)
  13. ->whereOr('no_field',$onlyPrefixPrivate)
  14. ->whereOr('no_field',$onlyPrefixOther)
  15. ->value('name','');
  16. }
  17. }