php 讀取檔案內容並儲存到資料庫

來源:互聯網
上載者:User

本程式的功能是讀取目錄下的txt 檔案,然後儲存到資料哦,就這麼簡單,下面我們就來看看我是如何把txt檔案內容儲存到mysql資料表的吧。

<?php
include('../boke/inc/re_conn.php');

CheckDir('file/');

function CheckDir($dir_path)//遍曆目錄
{
  if(is_dir($dir_path))
  { 
  if($dir_file=opendir($dir_path))
  {
   while(($dir_list=readdir($dir_file))!==false)
   {
    if($dir_list!="." && $dir_list!="..")
    {
     $title =substr($dir_list,6,strlen($dir_list)-4);
     //echo $title;
     openFile($dir_path.$dir_list,$title);
    }

   }
  }
    else
    {
     echo($dir_path."<br/>"); 
    }
  }
  else
  {
   echo($dir_path."<br/>");
  }
}

function savaDate($title,$content)//儲存資料
{
 $title = str_replace('.txt','',$title);
 echo $title;
 $content = addslashes($content);
 $sql ="insert into fil(title,content,siteindex,filesendid,systype,z_type) values('$title','$content',1,'admin',2,31)";
 if( mysql_query( $sql ) )
 {
  echo 'success<br>';
 }
 else
 {
  echo mysql_error();
 }
}

function openFile($filePath,$title)//讀取檔案內容提要
{
 
 if( is_file( $filePath ) )
 {
  $content = file_get_contents( $filePath );
  if( !empty( $content ) )
  {
   savaDate($title,$content);
  }
  else
  {
   ;
  }
 }
}
?>

本站原創轉載註明: http://www.111cn.net   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.