摘要:
1.在Sublime Text 3的根目录, 新建一个文本文档,然后更名为add_right_menu.inf(包含后缀),文本的编码格式请设置ANSI 2.文件内容补充 [Version] Signature="$Windows NT$" [DefaultInstall] AddReg=Subli 阅读全文
摘要:
http://mirrors.sohu.com/php/ 阅读全文
摘要:
1、查看自己PHP的版本 我的是php版本是7.0、VC14、X86。Redis下载地址:http://windows.php.net/downloads/pecl/releases/redis/ igbinary下载地址:http://windows.php.net/downloads/pecl/ 阅读全文
摘要:
PHP 链接Redis测试 <?php$redis = new Redis(); $redis->connect('127.0.0.1', 6379);$redis->auth('myredispassword');$redis ->set( "txt" , "Hello World"); echo 阅读全文
摘要:
$dir = 'article.xml'; //存放文件的路径 if(file_exists($dir)){ $file = fopen ($dir,"r"); //输入文件标签 Header ( "Content-type: application/octet-stream" ); Header 阅读全文
摘要:
static protected function getIP() { $ip; if (getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR")) $ip = g 阅读全文
摘要:
<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< 阅读全文
摘要:
之前在网上搜了很多安装环境的方法,这是自己实践操作的靠谱 一、 安装nginx 1、 安装nginx:apt-get –y install nginx 2、 开启nginx服务:service nginx start 3、 查询nginx服务启动情况:ps –A | grep nginx 4、 打开 阅读全文