이 프로그램의 기능은 디렉터리 TXT 파일 읽기 및 저장 데이터에 오, 그건 너무 간단 하 고, 어떻게 나는 MySQL 데이터 테이블에 저장 하는 TXT 파일 내용을 살펴보겠습니다.
<? php
포함 ('... /boke/inc/re_conn.php ');
Checkdir (' 파일 /');
Checkdir ($dir _path) //Traverse 디렉터리 기능
{
경우 (Is_dir ($dir _path))
{
경우 ($dir _file opendir ($dir _path) =)
{
동안 (($dir _list readdir ($dir _file) =)! = = false)
{
경우 ($dir _list! = "." & & $dir _list! = "...")
{
$title = substr ($dir _list, strlen ($dir _list) 6-4);
에코 $title;
OpenFile ($dir _path $dir _list, $title);
}
}
}
다른
{
에코 ($dir _path.) < br / > ");
}
}
다른
{
에코 ($dir _path.) < br / > ");
}
}
Savadate ($title, $content) //Save 데이터 기능
{
$title = str_replace ('txt', ', $title');
에코 $title;
$content = Addslashes ($content);
$sql = "fil (제목, 내용, siteindex, filesendid, systype, z_type) 값으로 삽입 ('$title', '$content' 1, '관리', 2.31) ";
경우 (mysql_query ($sql))
{
에코 '< br > 성공';
}
다른
{
에코 Mysql_error ();
}
}
함수 OpenFile ($filePath, $title) //Read 파일 콘텐츠 피드
{
& nbsp
경우 (Is_file ($filePath))
{
& nbsp; $content = file_get_contents ($filePath);
경우 (! ($content) 빈)
{
savadate ($title, $content);
&NBSP; & NBSP}
다른 {
;
}
}
}