PHP
MPU
互联网工作CTO架构师
展开
-
php注入专题
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->php注入专题创建时间:2005-03-09文转载 2006-10-13 14:06:00 · 2627 阅读 · 0 评论 -
centos yum安装php+mysql+apache
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->RHEL5和CENTOS安装完APACHE和MYS原创 2008-10-14 20:26:00 · 3003 阅读 · 1 评论 -
全国全国各个省市数据库 三级联动 无刷新数据库(mysql)
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> -- ---------------------转载 2008-10-16 11:39:00 · 3768 阅读 · 0 评论 -
wordpress优化之静态化
<!--google_ad_client = "pub-0241434510974184";/* 博客文章广告728x90, */google_ad_slot = "7316585398";google_ad_width = 728;google_ad_height = 90;// --> 前几天有博友向我反映我的博客访问速度很慢,这可把我急坏了,访问速度变转载 2008-12-30 13:14:00 · 1684 阅读 · 0 评论 -
国际:优秀的PHP程序员至少应该了解PHP代码的优缺点
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 我在SitePoint做面试官的时候一定会问的问转载 2009-01-08 14:09:00 · 1141 阅读 · 0 评论 -
php页面跳转
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->php只有一种方法,利用JavaScript的wi转载 2008-12-17 15:52:00 · 897 阅读 · 0 评论 -
PHP框架的繁荣是正确的发展方向吗?
<!--google_ad_client = "pub-0241434510974184";/* 博客文章广告728x90, */google_ad_slot = "7316585398";google_ad_width = 728;google_ad_height = 90;// -->http://www.javaeye.com/topic/319039转载 2009-08-13 17:37:00 · 743 阅读 · 0 评论 -
开发者不可不知的PHP框架深度解析
PHP成为世界上最流行的脚本语言有许多原因:灵活性,易用性等等。但通常只用PHP或者其他语言编码就会显得单调、重复,这时候就需要一个PHP框架来代替程序员完成那些重复不变的部分。本文通过回答What, When, Why 以及 Which这些问题,将对PHP框架进行全面解析。PHP框架是什么?PHP框架提供了一个用以构建web应用的基本框架,从而简化了用PHP编写web应用程序的流程。换言转载 2009-08-13 17:18:00 · 816 阅读 · 0 评论 -
PHP Cookie与Session跨域访问、传递
<!--google_ad_client = "pub-0241434510974184";/* 博客文章广告728x90, */google_ad_slot = "7316585398";google_ad_width = 728;google_ad_height = 90;// -->晚上特意花了个时间,自己动手试了下。在项目中一直碰到Cookie跨域访转载 2009-09-09 15:45:00 · 3834 阅读 · 1 评论 -
PHP程序61条面向对象分析设计的经验原则
你不必严格遵守这些原则,违背它们也不会被处以宗教刑罚。但你应当把这些原则看成警铃,若违背了其中的一条,那么警铃就会响起 。 ----- Arthur J.Riel (1)所有数据都应该隐藏在所在的类的内部。 (2)类的使用者必须依赖类的共有接口,但类不能依赖它的使用者。 (3)尽量减少类的协议中的消息。 (4)实现所有类都理解的最基本公有接口[例如,拷贝操作转载 2009-12-05 10:51:00 · 155 阅读 · 0 评论 -
php函数前面的&符号
函数的引用返回先看代码 复制PHP内容到剪贴板 PHP代码:function &test(){static $b=0;//申明一个静态变量$b=$b+1;echo $b;return $b;}$a=test();//这条语句会输出 $b的值 为1$a=5;$a=test();//这条语句会输出 $b的值 为2$a=&test();//这条语句会输出 $b的值 为3$a=5;$a=test();//转载 2009-12-29 11:31:00 · 1180 阅读 · 0 评论 -
php获取网页标题和内容函数(不包含html标签)
function getPageContent($url) { //$url='http://www.phplover.cn'; $pageinfo = array(); $pageinfo[content_type] = ''; $pageinfo[charset] = ''; $pageinfo[title] = ''; $pageinfo[description] = '原创 2010-07-19 11:54:00 · 4676 阅读 · 0 评论 -
php去除空值
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 我每次去除空值也是用foreach。后转为转载 2008-09-25 09:28:00 · 1210 阅读 · 0 评论 -
解决PHP超时问题
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 当PHP页面处理大事务时,页面往往会发生转载 2008-05-21 17:44:00 · 6034 阅读 · 0 评论 -
utf8字符串截取
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->/*** Filename : String.ph转载 2006-10-30 17:10:00 · 1251 阅读 · 0 评论 -
用PHP脚本自动把纯文本文件转换成Web页面
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->最近,我的一个老朋友向我打电话求助。他从事记者的职转载 2007-01-14 19:30:00 · 1317 阅读 · 0 评论 -
php实现首页自动选择语言转跳
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->很多网站在首页上做一些链接,让用户来选择将要访问的转载 2007-01-14 19:51:00 · 1090 阅读 · 0 评论 -
用 PHP 导出 MySQL 数据库内容为 .sql 文件
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->通常我们都用 phpMyAdmin 来导出,不过如转载 2007-06-06 15:36:00 · 1886 阅读 · 0 评论 -
JSEclipse插件
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->Vsign就算这个世界被寂寞绑票,我也不会奔跑转载 2007-10-13 15:21:00 · 1317 阅读 · 0 评论 -
PHP匹配UTF-8中文字符的正则表达式
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->急着用的朋友可以先拿去用,这个正则非原创,但是转载 2008-02-04 14:19:00 · 2657 阅读 · 0 评论 -
搜索引擎URL中的汉字解析
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// -->搜索引擎URL中的汉字解析代码说明一切:原创 2008-02-04 16:36:00 · 1535 阅读 · 0 评论 -
Discuz!登录,注册,退出接口.
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 现在用Discuz! 6了.网上找了几个现成的接原创 2008-02-25 17:40:00 · 12598 阅读 · 2 评论 -
Discuz!注册接口.可以不用跳转到Discuz!页面.
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 这个是Discuz!注册的接口代码. 注原创 2008-02-26 13:54:00 · 3567 阅读 · 0 评论 -
IE6/Firefox CSS兼容问题 - 解决IE5/IE5.5/IE6/Firefox的CSS兼容性问题
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> IE6/Firefox CSS兼容问题 -转载 2008-02-27 18:29:00 · 989 阅读 · 0 评论 -
eclipse php开发用相关配置
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> PHPeclipsehttp://upda原创 2008-03-27 21:05:00 · 993 阅读 · 0 评论 -
[整理] 页面跳转代码
<!--google_ad_client = "pub-0241434510974184";/* auto-http.cn 右边 ,468x60 */google_ad_slot = "0902256228";google_ad_width = 468;google_ad_height = 60;// --> 这年头,转载 2008-07-18 18:24:00 · 2685 阅读 · 0 评论 -
使用Memcached永久链接(pconnect)加速链接性能
<br />Memcached是利用内存来保存常用数据的一种缓存技术,由于支持分布式应用,所以每个Memcached服务在调用时,需要实例化并连接到服务器!<br />Memcached的链接服务器方法是“Connect”,我实际测试了一下,连续10000万次链接、关闭,结果速度如下:<br />总时间:84,040.0 毫秒<br />单链接:8.403998 毫秒<br /><br />看上去好像不错,不过对高性能、高强度要求的应用来说,8毫秒,无疑是巨大的性能损失!<br />在中文范围内google转载 2010-09-01 16:10:00 · 1424 阅读 · 0 评论