会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
有洁癖的隔壁老王
博客园
首页
新随笔
联系
订阅
管理
2020年6月17日
Sublime Text 3 鼠标右键快捷选项 简单且高效
摘要: 1.在Sublime Text 3的根目录, 新建一个文本文档,然后更名为add_right_menu.inf(包含后缀),文本的编码格式请设置ANSI 2.文件内容补充 [Version] Signature="$Windows NT$" [DefaultInstall] AddReg=Subli
阅读全文
posted @ 2020-06-17 09:24 有洁癖的隔壁老王
阅读(261)
评论(1)
推荐(0)
2020年6月16日
php所有版本
摘要: http://mirrors.sohu.com/php/
阅读全文
posted @ 2020-06-16 18:32 有洁癖的隔壁老王
阅读(122)
评论(0)
推荐(0)
2020年5月18日
windows 安装redis
摘要: 1、查看自己PHP的版本 我的是php版本是7.0、VC14、X86。Redis下载地址:http://windows.php.net/downloads/pecl/releases/redis/ igbinary下载地址:http://windows.php.net/downloads/pecl/
阅读全文
posted @ 2020-05-18 16:09 有洁癖的隔壁老王
阅读(172)
评论(0)
推荐(0)
php玩弄redis基本操作
摘要: PHP 链接Redis测试 <?php$redis = new Redis(); $redis->connect('127.0.0.1', 6379);$redis->auth('myredispassword');$redis ->set( "txt" , "Hello World"); echo
阅读全文
posted @ 2020-05-18 13:54 有洁癖的隔壁老王
阅读(209)
评论(0)
推荐(0)
2019年4月3日
PHP 实现文件下载
摘要: $dir = 'article.xml'; //存放文件的路径 if(file_exists($dir)){ $file = fopen ($dir,"r"); //输入文件标签 Header ( "Content-type: application/octet-stream" ); Header
阅读全文
posted @ 2019-04-03 11:04 有洁癖的隔壁老王
阅读(203)
评论(1)
推荐(0)
2019年3月20日
PHP 获取客户端的真实IP
摘要: static protected function getIP() { $ip; if (getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR")) $ip = g
阅读全文
posted @ 2019-03-20 18:59 有洁癖的隔壁老王
阅读(170)
评论(0)
推荐(0)
2019年3月12日
根据标签内个数,显示隐藏《加载更多》
摘要: <div class="question inner"> <div class="title"><span><i class="line-l"></i>大标题<i class="line-r"></i></span></div> <ul class="clearFix"> <li> <h3>标题1<
阅读全文
posted @ 2019-03-12 11:27 有洁癖的隔壁老王
阅读(161)
评论(0)
推荐(0)
2019年3月8日
ubuntu 安装nginx+php+mysql+phpadmin环境
摘要: 之前在网上搜了很多安装环境的方法,这是自己实践操作的靠谱 一、 安装nginx 1、 安装nginx:apt-get –y install nginx 2、 开启nginx服务:service nginx start 3、 查询nginx服务启动情况:ps –A | grep nginx 4、 打开
阅读全文
posted @ 2019-03-08 10:45 有洁癖的隔壁老王
阅读(965)
评论(0)
推荐(0)
公告