1、直接采用file函数来操作
注:由于 file函数是一次性将所有内容读入内存,而php为了防止一些写的比较糟糕的程序占用太多的内存而导致系统内存不足,使服务器出现宕机,所以默认情况下 限制只能最大使用内存16M,这是通过php.ini里的 memory_limit = 16M来进行设置,这个值如果设置-1,则内存使用量不受限制.
下面是一段用file来取出这具文件最后一行的代码.
ini_set('memory_limit','-1');
$file = 'access.log';
$data = file($file);
$line = $data[count($data)-1];
echo $line;
?>
整个代码执行完成耗时 116.9613 (s).
我机器是2个G的内存,当按下F5运行时,系统直接变灰,差不多20分钟后才恢复过来,可见将这么大的文件全部直接读入内存,因此memory_limit不能调得太高,以免出现灾难性的结果。
2、直接调用linux的tail命令来显示最后几行
在linux命令行下,可以直接使用tail -n 10 access.log很轻易的显示日志文件最后几行,可以直接用php来调用tail命令。
file = 'access.log';
$file = escapeshellarg($file); // 对命令行参数进行安全转义
$line = `tail -n 1 $file`;
echo $line; //by www.
?>
整个代码执行完成耗时 0.0034 (s)
3、直接使用php的fseek来进行文件操作
这是最为普遍的方式,它不需要将文件的内容全部读入内容,而是直接通过指针来操作,效率相当高。
在使用fseek来对文件进行操作时,方法有多种,效率上也略有差别,来看下面这二种方法。
方法一
首先,通过fseek找到文件的最后一位EOF,然后找最后一行的起始位置,取这一行的数据,再找次一行的起始位置, 再取这一行的位置,依次类推,直到找到了$num行。
$fp = fopen($file, "r");
$line = 10;
$pos = -2;
$t = " ";
$data = "";
while ($line > 0) {
while ($t != "\n") {
fseek($fp, $pos, SEEK_END);
$t = fgetc($fp);
$pos --;
}
$t = " ";
$data .= fgets($fp);
$line --;
}
fclose ($fp);
echo $data
?>
整个代码执行完成耗时 0.0095 (s)
方法二
还是采用fseek的方式从文件最后开始读,但这时不是一位一位的读,而是一块一块的读,每读一块数据时,就将读取后的数据放在一个buf里,然后通过换 行符(\n)的个数来判断是否已经读完最后$num行数据.
$fp = fopen($file, "r");
$num = 10;
$chunk = 4096;
$fs = sprintf()("%u", filesize($file));
$max = (intval($fs) == PHP_INT_MAX) ? PHP_INT_MAX : filesize($file);
for ($len = 0; $len < $max; $len += $chunk) {
$seekSize = ($max - $len > $chunk) ? $chunk : $max - $len;
fseek($fp, ($len + $seekSize) * -1, SEEK_END);
$readData = fread($fp, $seekSize) . $readData;
if (substr_count($readData, "\n") >= $num + 1) {
preg_match("!(.*?\n){".($num)."}$!", $readData, $match);
$data = $match[0];
break;
}
}
fclose($fp);
echo $data;
?>
整个代码执行完成耗时 0.0009(s).
方法三
function tail($fp,$n,$base=5)
{
assert($n>0);
$pos = $n+1;
$lines = array();
while(count($lines)< =$n){
try{
fseek($fp,-$pos,SEEK_END);
} catch (Exception $e){
fseek(0);
break;
}
$pos *= $base;
while(!feof($fp)){
array_unshift($lines,fgets($fp));
}
}
return array_slice($lines,0,$n);
}
var_dump(tail(fopen("access.log","r+"),10));
?>
整个代码执行完成耗时 0.0003(s)
json_encode是ajax应用中的一个函数,json_encode的使用条件比较苛刻的,需要在php 5.2.0以上并且需要PECL json在1.2.0以上才可以使用。
本文提供的json_encode的替代方法,出自php在线手册中一个示例,经测试完全可用。
代码如下:
/**
* json_encode的替代函数
* Edit www.
*/
function jsonEncode($var) {
if (function_exists('json_encode')) {
return json_encode($var);
} else {
switch (gettype($var)) {
case 'boolean':
return $var ? 'true' : 'false'; // Lowercase necessary!
case 'integer':
case 'double':
return $var;
case 'resource':
case 'string':
return '"'. str_replace()(array("\r", "\n", "<", ">", "&"),
array('\r', '\n', '\x3c', '\x3e', '\x26'),
addslashes()($var)) .'"';
case 'array':
// Arrays in JSON can't be associative. If the array is empty or if it
// has sequential whole number keys starting with 0, it's not associative
// so we can go ahead and convert it as an array.
if (emptyempty ($var) || array_keys()($var) === range(0, sizeof($var) - 1)) {
$output = array();
foreach ($var as $v) {
$output[] = jsonEncode($v);
}
return '[ '. implode(', ', $output) .' ]';
}
// Otherwise, fall through to convert the array as an object.
case 'object':
$output = array();
foreach ($var as $k => $v) {
$output[] = jsonEncode(strval($k)) .': '. jsonEncode($v);
}
return '{ '. implode(', ', $output) .' }';
default:
return 'null';
}
}
}
echo jsonEncode(array('first'=>'testing','second'=>'tangjili'));
?>
也可以是下面这样的代码。
function php_json_encode( $data ) {
if( is_array($data) || is_object($data) ) {
$islist = is_array($data) && ( emptyempty($data) || array_keys($data) === range(0,count($data)-1) );
if( $islist ) $json = '[' . implode(',', array_map('php_json_encode', $data) ) . ']';
else {
$items = Array();
foreach( $data as $key => $value ) $items[] = php_json_encode("$key") . ':' . php_json_encode($value);
$json = '{' . implode(',', $items) . '}';
}
} elseif( is_string($data) ) {
$string = '"' . addcslashes()($data, "\\\"\n\r\t/" . chr(8) . chr(12)) . '"';
$json = '';
$len = strlen($string);
for( $i = 0; $i < $len; $i++ ) {
$char = $string[$i];
$c1 = ord($char);
if( $c1 <128 ) { $json .= ($c1 > 31) ? $char : sprintf()("\\u%04x", $c1); continue; }
$c2 = ord($string[++$i]);
if ( ($c1 & 32) === 0 ) { $json .= sprintf("\\u%04x", ($c1 - 192) * 64 + $c2 - 128); continue; }
$c3 = ord($string[++$i]);
if( ($c1 & 16) === 0 ) { $json .= sprintf("\\u%04x", (($c1 - 224) <<12) + (($c2 - 128) << 6) + ($c3 - 128)); continue; }
$c4 = ord($string[++$i]);
if( ($c1 & 8 ) === 0 ) {
$u = (($c1 & 15) << 2) + (($c2>>4) & 3) - 1;
$w1 = (54<<10) + ($u<<6) + (($c2 & 15) << 2) + (($c3>>4) & 3);
$w2 = (55<<10) + (($c3 & 15)<<6) + ($c4-128);
$json .= sprintf("\\u%04x\\u%04x", $w1, $w2);
}
}
}
else $json = strtolower()(var_export( $data, true ));
return $json;
}
echo php_json_encode(array('first'=>'testing'));
?>
中文的话,可以结合如下的函数来使用。
function arrayRecursive(&$array, $function, $apply_to_keys_also = false)
{
foreach ($array as $key => $value) {
if (is_array($value)) arrayRecursive($array[$key], $function, $apply_to_keys_also);
else $array[$key] = $function($value);
if ($apply_to_keys_also && is_string($key)) { $new_key = $function($key); if ($new_key != $key) { $array[$new_key] = $array[$key]; unset($array[$key]); } }
}
}
?>
调用示例:
function JSON($array) {
arrayRecursive($array, 'urlencode', true);
$json = jsonEncode($array); // 或者 $json = php_json_encode($array);
return urldecode($json);
}
echo JSON(array('first'=>'testing','second'=>'中文'));
?>
代码如下:
/**
* 隐藏文件的真实下载地址
* Edit www.
*/
$file_name = "info_check.exe";
$file_dir = "/www/files/";
//检查文件是否存在
if(!file_exists($file_dir . $file_name)) exit('文件找不到');
else
{
$file = fopen($file_dir . $file_name,"r"); // 打开文件
// 输入文件标签
Header("Content-type: application/octet-stream");
Header("Accept-Ranges: bytes");
Header("Accept-Length: ".filesize($file_dir . $file_name));
Header("Content-Disposition: attachment; filename=" . $file_name);
// 输出文件内容
echo fread($file,filesize($file_dir . $file_name));
fclose($file);
exit;
}
?>
当文件路径为“http”或“ftp”网址时,请参考如下的方法:
/**
* http ftp文件下载地址隐藏
* Edit www.
*/
$file_name = "info_check.exe";
$file_dir = "http://www./";
$file = @ fopen($file_dir . $file_name,"r");
if (!$file) exit('文件找不到');
else {
Header("Content-type: application/octet-stream");
Header("Content-Disposition: attachment; filename=" . $file_name);
while (!feof ($file)) {
echo fread($file,50000);
}
fclose ($file);
}
?>