$argcphp
傳入的參數個數(包括文件)linux
$argv數組
傳入的參數的數組(包括文件)緩存
實時查看文件在linux上使用 tail -f 命令ide
在php 中要學會使用fseek()和flush()巧妙的配合來實現實時機制函數
######################spa
- //控制頁面緩存的代碼
- header("Cache-Control: no-cache,must-revalidate");
- header("Expires:Mon,26 Jul 1997 05:00::00 GMT");
#########################xml
stream_copy_to_stream這個函數rem
- <?php
- $src = fopen('http://www.example.com', 'r');
- $dest1 = fopen('first1k.txt', 'w');
- $dest2 = fopen('remainder.txt', 'w');
- echo stream_copy_to_stream($src, $dest1, 1024) . " bytes copied to first1k.txt\n";
- echo stream_copy_to_stream($src, $dest2) . " bytes copied to remainder.txt\n";
- ?>