wgethttp://cn2.php.net/distributions/php-5.4.37.tar.bz2tarjxfphp-5.4.37.tar.bz2useradd-s/sbin/nologinphp-fpmcdphp-5.4.37./configure--prefix=/usr/local/php
--with-config-file-path=/usr/local/php/etc--enable-fpm
--with-fpm-user=php-fpm--with-fpm-group=php-fpm..
分类:
Web程序 时间:
2016-07-31 08:04:04
阅读次数:
176
php71、安装PHP所需依赖;#yuminstallgccbisonbison-develzlib-devellibmcrypt-develmcryptmhash-developenssl-devellibxml2-devellibcurl-develbzip2-develreadline-devellibedit-develsqlite-devel#./configure--prefix=/opt/php7\--with-config-file-path=/opt/php7/etc\--w..
分类:
Web程序 时间:
2016-07-30 22:49:00
阅读次数:
291
当我们在使用File f=new File(path); 对于这个path来说是一个很痛苦的事情,在不同的系统上面的分隔符号是不一样的 在windows下面的话是一个"\"而在unix下面是一个"/" 在java中使用 File f=new File("/Users/lonecloud/Downlo ...
分类:
其他好文 时间:
2016-07-30 09:13:19
阅读次数:
117
配置文件的基本格式,输入部分,过滤器部分和输出部分。#Thisisacomment.Youshouldusecommentstodescribe
#partsofyourconfiguration.
input{
...
}
filter{
...
}
output{
...
}每个部分都可以配置一个或多个插件。下面展示的是输入部分,有两个file插件。input{
file{
path=&..
分类:
其他好文 时间:
2016-07-15 17:24:57
阅读次数:
954
Fast-CGI: ./configure --prefix=/usr/local/php --enable-fastcgi --enable-force-cgi-redirect --with-config-file-path=/etc --with-zlib --with-mysql --wit ...
分类:
Web程序 时间:
2016-07-14 07:06:09
阅读次数:
249
#!/usr/bin/python#coding=utf-8importre,sys,csvfromstringimportreplacedefInterfaceinfo(file_path,firms): withopen(file_path,‘r‘)asf: filecontext=f.readlines() iffirms==‘a10‘: splitstring_keyword=‘(^!)‘ firms_interface=‘^interface(.+)‘ ip_keyword=‘^ip..
分类:
编程语言 时间:
2016-07-09 22:25:30
阅读次数:
1303
编译php的时候遇到的问题:编译代码:./configure--prefix=/server/php-5.4-nginx--with-config-file-path=/server/php-5.4-nginx--with-mysql=/server/mysql-5.5/--with-mysqli=/server/mysql-5.5/bin/mysql_config--with-iconv-dir--with-freetype-dir--with-jpeg-dir--with-..
分类:
Web程序 时间:
2016-07-05 06:32:19
阅读次数:
183
文章摘自:http://www.ttlsa.com/nginx/nginx-root_alias-file-path-configuration/ nginx指定文件路径有两种方式root和alias,这两者的用法区别,使用方法总结了下,方便大家在应用过程中,快速响应。root与alias主要区别在 ...
分类:
其他好文 时间:
2016-06-28 18:22:17
阅读次数:
120
Java文件下载的几种方式 public HttpServletResponse download(String path, HttpServletResponse response) { try { // path是指欲下载的文件的路径。 File file = new File(path); / ...
分类:
编程语言 时间:
2016-06-24 14:21:47
阅读次数:
134
python2.7 <1> file_path是必须给出的参数,是要读取文件的绝对或者相对路径,要包含文件后缀. 绝对路径的3种表示方法:>>> file_path = "C:/tmp/123.txt" >>> file_path = "C:\\tmp\\123.txt" >>> file_path ...
分类:
编程语言 时间:
2016-06-14 23:49:27
阅读次数:
259