IEO Menu
InfoLogin
:: 전체게시물:: HTML 특수문자C/C++JavascriptIT/TIP개발/TIP개발/리눅스관리OSX/Windows잡담/잡동사니라이딩일기자가정비/튜닝유머사진 모음
HTML 테이블을 배열로 "HTML Table to Array" for PHP
Read: 7383
2016-08-30 16:30:40
function HTMLTable2Array($file)
{
if(!is_file($file)){return array();}

// DOM 기반 HTML 처리

$contents=file_get_contents($file);
$contents=str_replace("\r",'',$contents);
$DOM = new DOMDocument;
$DOM->loadHTML($contents);

// 사용변수 초기화

$array_table=array();
$count_table=0;
$count_tr=0;
$count_td=0;

// 테이블을 가져오고 존재하지 않으면 중단.

$tables=$DOM->getElementsByTagName('table');
if($tables->length<1){return array();}

foreach($tables as $table)
{
// TBODY 가 섞여 있을수 있으므로 TR태그만 가져온다.
$trs=$table->getElementsByTagName('tr');
$count_tr=0;
foreach($trs as $tds)
{
// 필요하다면 nodeName 을 체크한다.
if($tds->nodeName!='tr'){continue;}

// TR 하위 노드는 TD/TH 가 있으므로 childNodes 로 넘긴다.
$count_td=0;
foreach ($tds->childNodes as $td)
{
// td 태그 사이에 text 가 존재할수 있다. 노드이름을 구분하여 TD,TH만 가져오도록함.
if($td->nodeName=='td' || $td->nodeName=='th')
{
$array_table[$count_table][$count_tr][$count_td]=$td->nodeValue;
$count_td++;
}
}
$count_tr++;
}
}

return $array_table;
}
2014/06/25(수) 수원 찍고 오기
2014-06-25 00:55:16
2014/06/20 벤리110 인수
2014-06-20 00:50:48
토쳐라이딩 | IEO.KR
IEO.KR의 사전 서면동의 없이 IEO.KR 사이트의 일체의 정보, 콘덴츠 및 UI등을 상업적 목적으로 전재, 전송, 스크래핑 등 무단 사용할 수 없습니다.