|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
终于学会把表单的数据插入数据库,然后显示出来了,应该说一个程序的雏形已经诞生了。1、文件的上传1、客户端设置:(1)、在标签中将enctype和method两个属性指明响应的值。&nb[…]
1、文件的上传2、文件下载复杂文件下载只必要利用HTML的链接标志,并将属性href的URL值指定下载的文件便可。这类办法只能处置一些扫瞄器不克不及辨认的MIME范例文件。
为了进步平安性,不但愿在a标签中给出文件链接,则必需向扫瞄器发送需要的头信息,我们可使用以下代码。
3、文件函数库touch
设置文件的会见和润色工夫
booltouch(string$filename[,int$time[,int$time]])
copy
复制文件
boolcopy(string$source,string$dest)
注重:挪动文件请利用rename函数
file_put_contents
将一个字符串写进文件
intfile_put_contents(string$filename,string$data[,int$flag[,resource$content]])
file_get_contents
将全部文件读到字符串
stringfile_get_contents(string$filename[,booluser_include_path[,resource$content[,int$offset[,int$maxlen]]]]) 4、序列化与反序列化serialize
序列化
stringserialize(mixed$value)
注重:serialize()可处置除resouce以外的任何范例。乃至能够serialize()那些包括了指向其本身援用的数组。
unserialize
反序列化
mixedunserialize(string$str)
[quote]●date
格局化一个当地工夫/日期
stringdate(stringformat[,inttimestamp]);
●getdate
获得日期/工夫信息
arraygetdate([inttimestamp]);
[quote]●microtime
前往以后Unix工夫戳和微秒数
mixedmicrotime([boolget_as_float]);
●date_default_timezone_set
设置默许时区
booldate_default_timezone_set(stringtimezone_identifier);
●date_default_timezone_get
猎取默许时区
stringdate_default_timezone_get(void); 3、字符函数库strlen
猎取字符串长度
intstrlen(string$str);
strtolower
字符串转换为小写
stringstrtolower(string$str);
strtoupper
字符串转换为年夜写
stringstrtoupper(string$str);
ucfirst
首字母年夜写
stringucfirst(string$str);
ucwords
将每一个单词的首字母转换为年夜写字母
stringucwords(string$str);
ltrim
从字符串入手下手的地位删除空格或其他字符
stringltrim(string$str[,string$charlist]);
rtrim
从字符串停止的地位删除空格大概其他字符
stringrtrim(string$str[,string$chirlist]);
trim
从字符串入手下手和停止的地位删除空格大概其他字符
str_replace
字符交换
mixedstr_ireplace(mixed$search,mixed$replace,mixed$subject,[int$count]);
str_ireplace
字符交换
mixedstr_ireplace(mixed$search,mixed$replace,mixed$subject,[int$count]);
md5 盘算字符串的MD5哈希
stringmd5(string$str[,bool$raw_output=false]);
strpos
前往一个字符在另外一个字符第一次呈现的地位
intstrpos(stringhaystack,mixedneedle[,intoffset]); [/quote][/quote]
讲了这么多,无非是想说:学习PHP不仅要掌握方法,更多的是付出汗水,我不希望看到中途放弃的人,相信自己,相信自己的选择,更要相信自己的能力,如果自己想放弃,暴力一点的话,就自己抽自己一个嘴巴。 |
|