<?
$URL = "
http://naver.com"; //이곳에 원하는 주소를 입력하구요.
// 웹문서 가져오기 함수부분
function get($url) {
$fp = fopen($url, "r");
while(!feof($fp)) {
$tmp = fgets($fp, 1024);
$temp .= $tmp;
}
fclose($fp);
return $temp;
}
function get_url($url) {
$fp = fopen($url, "r");
while(!feof($fp)) {
$tmp = fgets($fp, 1024);
$temp .= $tmp;
}
fclose($fp);
return $temp;
}
$temp = get($URL);
list ($temp, $body) = split ('Opencast Type ', $temp);
list ($body, $temp) = split ('//Opencast Type', $body);
echo "$body"; // 출력
?>