ファイルを取得する

//----------------------------------------------------------------

$url[0] = "http://gimpo.2ch.net/_service/SMART-";
$url[1] = "http://yutori.2ch.net/_service/SMART-";
$url[2] = "http://tsushima.2ch.net/_service/SMART-";

$url_count = count($url);

for($i = 0; $i < $url_count; $i++) {
   $dat[$i] = file_get_contents($url[$i] . $b_yesterday . ".txt")
       . file_get_contents($url[$i] . $yesterday . ".txt")
       . file_get_contents($url[$i] . $today . ".txt");
   if($i != 1) {
      $dat_s[$i] = file_get_contents($url[$i] . $b_yesterday . "-system.txt")
             . file_get_contents($url[$i] . $yesterday . "-system.txt")
             . file_get_contents($url[$i] . $today . "-system.txt");
   }
}

//----------------------------------------------------------------

これで、$dat[0-2]の中にそれぞれ、/homeが入ってるSSDのSMARTのデータを取得
また、$dat_s[0,2]の中にそれぞれ(ry を取得