windows上安装php+IIS设置 1、安装PHP5 下载: http://cn2.php.net/get/php-5.2.0-Win32.zip/from/cn.php.net/mirror 安装: 对php-5.2.0-Win32.zip解压缩到d:\php(可以是其他目录,根据您的具体情况...
sudo apt-get install apache2sudo apt-get install php5sudo apt-get install php5-mcrypt需要开启 mod_rewrite 模块修改 apache2 的配置文件 /etc/apache2/apache2.conf为 la...
分类:
其他好文 时间:
2014-08-04 01:51:56
阅读次数:
309
一、安装环境1、CentOS5.52、php5.43、MySQL5.5.19二、安装程序依赖库和开发环境为了省事把所需要的库文件全都安装上,可以使用rpm包安装,也可以用yum命令安装,1yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-deve...
分类:
数据库 时间:
2014-08-03 23:11:16
阅读次数:
338
Ubuntu下快速搭建LAMP环境过程记录:
安装 Apache2:sudo apt-get install apache2
安装PHP模块:sudo apt-get install php5
安装Mysqlsudo apt-get install mysql-server
安装phpmyadmin 其他模块安装:sudo apt-get install libapac...
分类:
系统相关 时间:
2014-08-03 15:20:05
阅读次数:
413
PHP运行模式:1)cgi通用网关接口(CommonGatewayInterface))2)fast-cgi常驻(long-live)型的CGI3)cli命令行运行(CommandLineInterface)4)web模块模式(apache等web服务器运行的模块模式)HTTPServer有三种架构比较流行:(1)Apache+mod_php5(2)lighttp+spawn-fcgi(3)..
分类:
Web程序 时间:
2014-08-01 20:05:32
阅读次数:
381
1.找到ecshop\includes\cls_image.php文件搜索function gd_version改成static function gd_version2、Strict Standards: Only variables should be passed by reference i...
分类:
Web程序 时间:
2014-08-01 19:10:02
阅读次数:
201
SimpleXML是PHP5后提供的一套简单易用的xml工具集,可以把xml转换成方便处理的对象,也可以组织生成xml数据。不过它不适用于包含namespace的xml,而且要保证xml格式完整(well-formed)。它提供了三个方法:simplexml_import_dom、simplexml...
分类:
Web程序 时间:
2014-07-31 19:49:17
阅读次数:
199
第一步 下载 http://www.microsoft.com/en-us/download/details.aspx?id=20098[PHP_PDO_SQLSRV] extension=php_pdo_sqlsrv_54_ts.dll [PHP_SQLSRV] extension=php_sql...
分类:
数据库 时间:
2014-07-31 15:56:46
阅读次数:
273
自从php5.3,越来越多的人会遇到“Assigning the return value of new by reference is deprecated in xxxx”这样的提示,尤其是在国外产品中(例如wordpress、joolma),很多人的解决办法很简单:把php版本换回就版本就ok...
分类:
其他好文 时间:
2014-07-31 12:57:16
阅读次数:
191
PHP5.2 新增的 json 功能是非常受欢迎的,但是经过测试发现,json_encode对中文的处理是有问题的: 不能处理GB编码,所有的GB编码都会替换成空字符; utf8编码的中文被编码成unicode编码,相当于javascript的escape函数处理的结果。 为了能正确使用jso...
分类:
Web程序 时间:
2014-07-30 20:05:24
阅读次数:
245