本帖最後由 guo.cane 於 2013-11-19 21:29 編輯
資料夾處理- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>資料夾處理</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- //1. 新增目錄(資料夾)
- //mkdir('test'); //make directory
- $directory = 'test'; //宣告資料夾名稱
- /*if(is_dir($directory)){ //判斷 $directory 是否存在
- echo $directory.'已存在<br />';
- }else{
- //檔案不存在
- mkdir($directory); //make directory
- echo $directory.'已建立<br />';
- }*/
-
- //2. 重新命名資料夾名稱
- //rename($directory, 'TEST');
-
- //3. 刪除資料夾(只能刪除空的資料夾)
- rmdir('TEST'); //remove directory
- ?>
- </body>
- </html>
複製代碼 檔案處理- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>檔案處理</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- //$str = file_get_contents('news.txt'); //讀取檔案
- //echo nl2br($str); //將\r\n符號轉為<br />
-
- //$str = file_get_contents('http://tw.yahoo.com/'); //讀取遠端資料
- //echo $str; //將\r\n符號轉為<br />
-
-
-
- //$str = '你好嗎';
- //$str = '你<br />好<br />嗎';
- //$str = '你\r\n好\r\n嗎';
- //$str = '你'."\r\n".'好'."\r\n".'嗎';
- //$str = "你\r\n好\r\n嗎"; //\r\n 是文字檔的換行符號
- //file_put_contents('test.txt', $str); //產生一個txt的檔案
-
-
- $str = file_get_contents('http://s1.djyimg.com/i6/904210101211509.jpg'); //抓取遠端圖片
- file_put_contents('test.jpg', $str); //產生一個jpg的檔案
- echo '<img src="test.jpg" width="20%" />'; //顯示圖片
- ?>
- </body>
- </html>
複製代碼 計數器- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>計數器</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- $counter = @file_get_contents('counter.txt'); //讀取 counter.txt 的數字
- if($counter==''){ //判斷 $counter 是否有值
- //代表空值
- $counter = 1;
- }else{
- //代表有值
- $counter = $counter + 1;
- }
- file_put_contents('counter.txt', $counter); //將 $counter 儲存回去
- echo '訪客人數:'.$counter;
- ?>
- </body>
- </html>
複製代碼 |