
php
文章平均质量分 67
liumf2005
这个作者很懒,什么都没留下…
展开
-
windows xp 安装 IIS6
1. 下载完整的iis安装包2.原创 2014-09-04 18:42:37 · 1144 阅读 · 1 评论 -
php 伪静态(url rewrite)apache配置!
http://blog.youkuaiyun.com/su_ocean16/article/details/7014609mod_rewrite是Apache的一个非常强大的功能,它可以实现伪静态页面。下面我详细说说它的使用方法!对初学者很有用的哦!1.检测Apache是否支持mod_rewrite通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Mod转载 2015-04-23 17:49:10 · 2820 阅读 · 0 评论 -
The Zend Framework MVC Architecture
http://www.cnblogs.com/terryglp/articles/1775778.html一、概述:In this chapter, we will cover the following topics:1. Zend framework MVC overview2. The Front Controller3. The router4. The转载 2015-01-05 23:12:52 · 563 阅读 · 0 评论 -
php preg_match 正则表达式 介绍
http://blog.youkuaiyun.com/beyondlpf/article/details/7041401第一,让我们看看两个特别的字符:‘^’和‘$’他们是分别用来匹配字符串的开始和结束,以下分别举例说明:"^The": 匹配以 "The"开头的字符串;"of despair$": 匹配以 "of despair" 结尾的字符串;"^abc$": 匹配以转载 2015-01-05 22:33:46 · 783 阅读 · 0 评论 -
大话Session
http://www.cnblogs.com/shoru/archive/2010/02/19/1669395.html引言 在web开发中,session是个非常重要的概念。在许多动态网站的开发者看来,session就是一个变量,而且其表现像个黑洞,他只需要将东西在合适的时机放进这个洞里,等需要的时候再把东西取出来。这是开发者对session最直观的感受,但是黑洞里转载 2015-02-05 13:44:33 · 346 阅读 · 0 评论 -
AOP技术基础
http://wayfarer.cnblogs.com/articles/241024.html1、引言2、AOP技术基础3、Java平台AOP技术研究4、.Net平台AOP技术研究2.1 AOP技术起源AOP技术的诞生并不算晚,早在1990年开始,来自Xerox Palo Alto Research Lab(即PARC)的研究人员就对面向对转载 2015-01-06 17:33:35 · 469 阅读 · 0 评论 -
提高Zend Framework 2 性能 Autoloader Classmap
http://solf.me/zend-framework-2-performance-tips/转载 2014-09-17 15:59:33 · 811 阅读 · 0 评论 -
基于 REST 的 Web 服务:基础
http://www.ibm.com/developerworks/cn/webservices/ws-restful/index.html转载 2014-09-03 20:39:43 · 482 阅读 · 0 评论 -
PHP 程序员的调试技术
简介有许多 PHP 调试技术可以在编码的时候节约大量时间。一个有效却很基本的调试技术就是打开错误报告。另一个略微高级一点的技术包括使用 print 语句,通过显示在屏幕上实际出现的内容,有助于精确地找出更难发现的 bug。PHPEclipse 是一个 Eclipse 插件,能够强调常见的语法错误,可以与调试器结合起来用于设置断点。回页首设置要学习本文描述转载 2014-09-03 17:45:36 · 509 阅读 · 0 评论 -
Emacs for PHP
Emacs for PHP PHP Add commentsDec222008 1.download php-mode.el from http://sourceforge.net/projects/php-mode/2. copy php-mode.el to emacs/lisp/3.byte compile php-mode.el转载 2014-09-02 18:12:49 · 1968 阅读 · 0 评论 -
Apache 在更改DocumentRoot,或新增虚拟目录之后出现403错误的解决方法汇总详解(Linux)
http://blog.youkuaiyun.com/younger_z/article/details/8714089Check every directory from where the file is located all the way up to the root. It is likely one of the parent directories that doesn't hav转载 2014-09-02 17:00:10 · 923 阅读 · 0 评论 -
CentOS 下Apache+PHP+MySQL 服务器配置(上)
http://www.cnblogs.com/macolex/archive/2011/09/23/2185994.html1、用ssh远程已安装好的CentOS服务器,却无法连接。远程登陆同机房另一台Windows 2003, 用2003 ssh 这台CentOS 成功,初步判断为IP、网关设置问题。2、SSH登陆CentOS后发现命令行乱码,于是转载 2014-08-28 16:24:25 · 557 阅读 · 0 评论 -
SPL学习笔记之二:迭代器
http://blog.youkuaiyun.com/cgh43/article/details/5884427SPL迭代器接口的作用在于帮助实现高级的迭代算法,允许为类创建精巧的数据访问方法。SPL提供了5个迭代器接口:Traversable、Iterator、IteratorAggregate、OuterIterator和RecursiveIterator。1. Traversable转载 2015-05-18 16:31:54 · 493 阅读 · 0 评论