原文地址:http://www.php100.com/html/php/rumen/2014/0326/6706.html
一、文件的上传
1、client设置:
二、文件下载(1)、在
三、文件函数库简单文件下载仅仅须要使用HTML的链接标记,并将属性href的URL值指定下载的文件就可以。这样的方法仅仅能处理一些浏览器不能识别的MIME类型文件。
四、序列化与反序列化bool touch(string $filename[, int $time[, int $time]])
bool copy(string $source, string $dest)
int file_put_contents(string $filename, string $data[, int $flag[, resource $content]])
string serialize(mixed $value)
注意:serialize()可处理除了resouce之外的不论什么类型。
甚至能够serialize()那些包括了指向其自身引用的数组。
mixed unserialize(string $str)
string date(string format[, int timestamp]);
array getdate([int timestamp]);
mixed microtime([bool get_as_float]);
string strtolower(string $str);
string strtoupper(string $str);
string ltrim(string $str [, string $charlist]);
string rtrim(string $str[, string $chirlist]);
mixed str_ireplace(mixed $search, mixed $replace, mixed $subject, [int $count]);
mixed str_ireplace(mixed $search, mixed $replace, mixed $subject, [int $count]);
md5