摘要:
转自:http://archive.cnblogs.com/a/1959588/1. PHP的COOKIEcookie 是一种在远程浏览器端储存数据并以此来跟踪和识别用户的机制。PHP在http协议的头信息里发送cookie, 因此 setcookie() 函数必须在其它信息被输出到浏览器前调用,这和对 header() 函数的限制类似。1.1 设置cookie:可以用 setcookie() 或 setrawcookie() 函数来设置 cookie。也可以通过向客户端直接发送http头来设置.1.1.1 使用setcookie()函数设置cookie:bool setcookie ( st 阅读全文
摘要:
<?php
/* 将URL中的某参数设为某值*/
function url_set_value($url,$key,$value) { $a=explode('?',$url); $url_f=$a[0]; $query=$a[1]; parse_str($query,$arr); $arr[$key]=$value; return $url_f.'?'.http_build_query($arr); } //copy a direction’s all files to another direction ... 阅读全文