PHP
chz20072008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows下apache和php的搭建
windows下搭建apache+php,需要注意: 1.下载apahce的安装版,如2.2.9 2.下载php5的zip包,不要下载安装版。并释放到d:\php 3.将d:\php5添加到window的path变量中 4.配置apache/conf/下的httpd.conf,在127行添加如下代码: #add php LoadModule php5_module d:/php/php5apac...2008-09-05 23:00:42 · 120 阅读 · 0 评论 -
PHP Operators
PHP OperatorsThis section lists the different operators used in PHP.Arithmetic OperatorsOperatorDescriptionExampleResult+Additionx=2x+24-Subtractionx=25-x3*Multiplicationx=4x*520/Division15/55/232.5%M...2008-03-04 11:35:36 · 124 阅读 · 0 评论 -
PHP String Functions
PHP String IntroductionThe string functions allow you to manipulate strings.InstallationThe string functions are part of the PHP core. There is no installation needed to use these functions.PHP String...2008-03-04 11:37:38 · 147 阅读 · 0 评论 -
PHP中如何得到数组的长度
PHP中有两个内建的函数:count() 和sizeof(),可以实现得到数组的长度 $colorList = array("apple"=>"red", "grass"=>"green", "sky"=>"blue", "nigh2008-03-04 14:07:00 · 162 阅读 · 0 评论 -
PHP Date / Time Functions References
InstallationThe date/time functions are part of the PHP core. There is no installation needed to use these functions.Runtime ConfigurationThe behavior of the date/time functions is affected by setting...2008-03-04 14:35:52 · 124 阅读 · 0 评论 -
PHP 平台终极堡垒 - Zend Platform
连载(一) ZendPlatform综述 PHP 平台终极堡垒 - Zend Platform 一、PHP 在中国 近年来,随着开源潮流的不断兴起与繁荣,越来越多的 WEB 开发者转向 PHP 语言环境和优质高效的 L.A.M.P 平台架构,同时也有越来越多的商业、政府、电信等企业部门使用PHP 构建关键性 WEB 应用系统。PHP 以其开源、高效、稳定、简洁等诸多优势迅速在中国和...2008-03-26 14:42:50 · 206 阅读 · 0 评论 -
PHP 高速公路-Zend Platform PHP性能提升详细评测
连载(二) 性能优化 PHP 高速公路-Zend Platform PHP性能提升详细评测 一、 概述 在上一篇《PHP 平台终极堡垒 - Zend Platform》文章中,我们已经向大家介绍了Zend Platform强大的功能和特性,相信各位对Zend Platform也已经有了初步的认识。从这篇文章开始我们将会对 Zend Platform 中的主要功能模块和特性进行详细的评测以及介...2008-03-26 14:45:06 · 158 阅读 · 0 评论
分享