php5 inpractice看書心得(2)

$argcphp

      傳入的參數個數(包括文件)linux

$argv數組

    傳入的參數的數組(包括文件)緩存

 

實時查看文件在linux上使用 tail -f 命令ide

在php 中要學會使用fseek()和flush()巧妙的配合來實現實時機制函數

 

######################spa

  
  
  
  
  1. //控制頁面緩存的代碼 
  2. header("Cache-Control: no-cache,must-revalidate"); 
  3. header("Expires:Mon,26 Jul 1997 05:00::00 GMT"); 

#########################xml

stream_copy_to_stream這個函數rem

  
  
  
  
  1. <?php 
  2. $src = fopen('http://www.example.com''r'); 
  3. $dest1 = fopen('first1k.txt''w'); 
  4. $dest2 = fopen('remainder.txt''w'); 
  5.  
  6. echo stream_copy_to_stream($src$dest1, 1024) . " bytes copied to first1k.txt\n"
  7. echo stream_copy_to_stream($src$dest2) . " bytes copied to remainder.txt\n"
  8.  
  9. ?>  
相關文章
相關標籤/搜索