PHP文件的上传下载
个人博客原文:http://www.phpthinking.com/archives/332
一、文件的上传 1、客户端设置: (1)、在 标签中将enctype和method两个属性指明相应的值。&nb […]
一、文件的上传
1、客户端设置:
(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]);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。