コード例 #1
0
 public function sitemap()
 {
     // todo, cache this!
     $path = $this->_getRequest()->urlSprintf('%p%d.%t') . '/users/';
     $return = [];
     foreach (SortFieldEnum::all() as $item) {
         $x = User::orderBy($item, 'desc')->select('id')->limit(1000)->get();
         foreach ($x as $user) {
             $return[] = $path . $user->id;
         }
     }
     return implode("\n\r", $return);
 }