当前位置:首页 > 搜索和 w 相关的文章

windows/linux中PHP文件上传大小修改

添加日期:2014-08-26 08:24:38 发布:smiling 
在php中默认只能上传2MB大小的文件,如果想上传更多更大的文件我们需要修改一些参数,下面大家来参考一下 linux系统1、 usr local nginx conf nginx conf修改client_max_body_size2、 usr local php ...

windows中PHP 5.2.17安装eAccelerator方法

添加日期:2014-08-25 17:22:22 发布:smiling 
eAccelerator是一个开源php加速器,优化和动态内容缓存,提高了php脚本的缓存性能,使得PHP脚本在编译的状态下,对服务器的开销几乎完全消除,下面我来给各位同学介绍PHP 5 2 17 安装 eAccelerator方 ...

浅析rawurlencode()和urlencode()函数区别

添加日期:2014-08-25 17:20:06 发布:smiling 
今天在阅读开源代码时发现了一个URL的编码函数:rawurlencode(),以前一直没有注意过,因为在平时的开发上主要使用的是 urlencode(),故专门研究了一番 其实这两个函数的区别很简单,它们两个都会把URL ...

windows2003下配置php curl组件

添加日期:2014-08-25 16:59:03 发布:smiling 
在php中php curl组件默认情况下是不支持的,下面小编来给大家介绍在windows2003下配置php_curl组件的文字教程,希望此方法对大家所有帮助 A) 支持php_curl组件1 找到php ini,一般在c: windows php ...

windows wamp中配置安装xhprof步骤

添加日期:2014-08-25 16:56:04 发布:smiling 
1 下载在这里 http: dev freshsite pl php-extensions xhprof html 我使用的是wamp 2 2d 32位的,这里罗嗦一句,既然用windows的wamp了,就不要装64位了,毕竟都是开发环境,正式环境肯定是32位的, ...

Warning:chmod() has been disabled for security reasons in

添加日期:2014-08-23 09:07:13 发布:smiling 
Warning: chmod() has been disabled for security reasons in D: freehost xxx WindFile php on line 102根据英文的意思我们知道是出于安全原因,已被禁用的chmod()了,那么解决 ...

php webshell扫描后门木马实例程序

添加日期:2014-08-22 10:58:40 发布:smiling 
本文章来给大家介绍一个php webshell扫描后门木马实例程序,这个可以扫描你网站上的木马程序,这个给大家找网站木马提供了很大的方便 php webshell扫描后门木马实例程序代码如下:<?php *********** ...

php XMLWriter类的简单示例

添加日期:2014-08-20 14:45:32 发布:smiling 
前面的mysql php 是封装的mysql数据库功能,单例模式,所以取对象是静态方法 mysql::getObject();代码很简单,如下所示:include& 39;mysql php& 39;;$mysql=mysql::getObject();$mysql->query("SELE ...

PHP中文地址栏url编解码 urlencode()与rawurlencode()函数

添加日期:2014-08-17 17:11:55 发布:smiling 
string urlencode ( string str)有一点需要注意的地方是,urldecode() 和 rawurldecode() 解码出的字符串是 utf-8格式的编码,如果url中含有中文的话,而页面设置又不是 utf-8 的话,则要把 ...

php域名whois查询函数

添加日期:2014-08-16 08:54:08 发布:smiling 
functionwhois_hichina($domain){preg_match("|<pre>( +?)< pre>|is",@file_get_contents(& 39;http: whois hichina com cgi-bin whois?domain=& 39; $domain & 39;& 39;),$whois);$whois[0]=str_ ...

zend framework Invalid command RewriteEngine

添加日期:2014-08-04 15:38:41 发布:smiling 
zend framework invalid command & 39;rewriteengine& 39;解决办法zend framework tutorial时候,运行例子,浏览器报错为:the server encountered an internal error and was unable ...

php循环语句for while do while的用法

添加日期:2014-08-02 16:39:06 发布:smiling 
php循环语句for while do while的用法 循环结构一、while循环while(表达式){循环体; 反复执行,直到表达式为假}<?php$num=1;while($num<=10){print"Numberis$num<br >";$num++;}print& 39;Done ...