Board logo

標題: 2013年11月19日 [打印本頁]

作者: guo.cane    時間: 2013-11-19 18:58     標題: 2013年11月19日

本帖最後由 guo.cane 於 2013-11-19 21:29 編輯

資料夾處理
  1. <?php

  2.         header('Content-Type:text/html; charset=utf-8');

  3. ?>
  4. <html>
  5.         <head>
  6.                 <title>資料夾處理</title>
  7.                 <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
  8.         </head>
  9.         <body>
  10.         <?php
  11.                 //1. 新增目錄(資料夾)
  12.                 //mkdir('test');        //make directory
  13.                 $directory = 'test';        //宣告資料夾名稱
  14.                 /*if(is_dir($directory)){        //判斷 $directory 是否存在
  15.                         echo $directory.'已存在<br />';
  16.                 }else{
  17.                         //檔案不存在
  18.                         mkdir($directory);        //make directory
  19.                         echo $directory.'已建立<br />';
  20.                 }*/
  21.                
  22.                 //2. 重新命名資料夾名稱
  23.                 //rename($directory, 'TEST');
  24.                
  25.                 //3. 刪除資料夾(只能刪除空的資料夾)
  26.                 rmdir('TEST');        //remove directory
  27.         ?>
  28.         </body>
  29. </html>
複製代碼
檔案處理
  1. <?php

  2.         header('Content-Type:text/html; charset=utf-8');

  3. ?>
  4. <html>
  5.         <head>
  6.                 <title>檔案處理</title>
  7.                 <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
  8.         </head>
  9.         <body>
  10.         <?php
  11.                 //$str = file_get_contents('news.txt');        //讀取檔案
  12.                 //echo nl2br($str);        //將\r\n符號轉為<br />
  13.                
  14.                 //$str = file_get_contents('http://tw.yahoo.com/');        //讀取遠端資料
  15.                 //echo $str;        //將\r\n符號轉為<br />
  16.                
  17.                
  18.                
  19.                 //$str = '你好嗎';
  20.                 //$str = '你<br />好<br />嗎';
  21.                 //$str = '你\r\n好\r\n嗎';
  22.                 //$str = '你'."\r\n".'好'."\r\n".'嗎';
  23.                 //$str = "你\r\n好\r\n嗎";        //\r\n 是文字檔的換行符號
  24.                 //file_put_contents('test.txt', $str);        //產生一個txt的檔案
  25.                
  26.                
  27.                 $str = file_get_contents('http://s1.djyimg.com/i6/904210101211509.jpg');        //抓取遠端圖片
  28.                 file_put_contents('test.jpg', $str);        //產生一個jpg的檔案
  29.                 echo '<img src="test.jpg" width="20%" />';        //顯示圖片
  30.         ?>
  31.         </body>
  32. </html>
複製代碼
計數器
  1. <?php

  2.         header('Content-Type:text/html; charset=utf-8');

  3. ?>
  4. <html>
  5.         <head>
  6.                 <title>計數器</title>
  7.                 <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
  8.         </head>
  9.         <body>
  10.         <?php
  11.                 $counter = @file_get_contents('counter.txt');        //讀取 counter.txt 的數字
  12.                 if($counter==''){                //判斷 $counter 是否有值
  13.                         //代表空值
  14.                         $counter = 1;
  15.                 }else{
  16.                         //代表有值
  17.                         $counter = $counter + 1;
  18.                 }
  19.                 file_put_contents('counter.txt', $counter);        //將 $counter 儲存回去
  20.                 echo '訪客人數:'.$counter;
  21.         ?>
  22.         </body>
  23. </html>
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2