/**
  * ตรวจสอบเวอร์ชั่นใหม่ของ GCMS
  */
 public static function get()
 {
     // url ของตัว update
     $url = 'http://gcms.in.th/gcmsupdate.php?v=' . self::$request->post('v')->filter('0-9a-z\\-\\.');
     if ($feedRef = @fopen($url, 'rb')) {
         $contents = '';
         while (!feof($feedRef)) {
             $contents .= fread($feedRef, 1024);
         }
         fclose($feedRef);
     } elseif ($ch = @curl_init()) {
         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
         curl_setopt($ch, CURLOPT_HEADER, 0);
         // method ที่เราจะส่ง เป็น get หรือ post
         curl_setopt($ch, CURLOPT_POST, 0);
         curl_setopt($ch, CURLOPT_URL, $url);
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
         // ผลการ execute กลับมาเป็น ข้อมูลใน url ที่เรา ส่งคำร้องขอไป
         $contents = curl_exec($ch);
         curl_close($ch);
     }
     $response = new Response();
     $response->withHeader('Content-type', 'text/html; charset=utf-8')->withContent($contents)->send();
 }