- 博客(9)
- 收藏
- 关注
原创 php退出登录
public function logout(){ $_SESSION=array(); if(isset($_COOKIE[session_name()])){ setcookie(session_name(),'',time()-3600); } session_destroy(); Redirect("/admin/login");}
2017-01-12 09:55:27 893
转载 php socket编程
http://www.cnblogs.com/thinksasa/archive/2013/02/26/2934206.html
2016-09-29 09:52:52 309
转载 PHP Ajax 跨域问题最佳解决方案
http://www.runoob.com/w3cnote/php-ajax-cross-border.html
2016-09-23 17:23:32 227
转载 memcached如何保存超过30天
$memcached->set('name' , 'zhangsan' , MEMCACHE_CONPRESSED , time()+30*24*3600+1);
2016-09-03 15:59:14 540
原创 自定义保存session路径
if(is_writeable($ssessionSavePath)&&is_readable($ssessionSavePath)){ session_save_path(); }
2016-09-03 15:55:32 1076
原创 nginx配置域名
server { listen 90; server_name weishenghuo.com; index index.html index.htm index.php; root /xmisp/www/weishenghuo/public; if (!-f $request_filename) {
2016-09-02 10:54:31 395
原创 php解决时间戳显示2038年之后的日期
1、将时间戳转化为日期。 $d = new DateTime('@888888888888'); $d->setTimezone(new DateTimeZone('PRC')); echo $d->format('Y-m-d H:i:s');2、将年月日转化为一个时间戳。 $d = new DateTime('2099-02-22 2
2016-09-02 10:27:56 2521
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人