php在window下的安装
学习一门语言,当然要配置其开发和运行环境了。php开发工作可以任何文本编辑器,运行环境是apache服务器。市面上有多中套餐组件,比如wamp(windows,apache,mysql,php),lamp(linux,apache,mysql,php),xampp( ApacheMySQLPHPPERL )等等。不过学
学习一门语言,当然要配置其开发和运行环境了。php开发工作可以任何文本编辑器,运行环境是apache服务器。市面上有多中套餐组件,比如wamp(windows,apache,mysql,php),lamp(linux,apache,mysql,php),xampp(Apache+MySQL+PHP+PERL)等等。不过学习阶段,还是先不用这些了,先把原理搞懂再讲。
现在做项目,必然要和数据库打交道。php理想的数据库是mysql,当然也支持别的数据库。容器当然就是apache了。我认为开发阶段还是在windows下比较好,毕竟有先入为主的观念。
准备工具:php-5.3.28,apache2.2.15,mysql5.5。
mysql的安装就不介绍了。自己去下载安装即可了。最新的php是5.5,为什么不下载呢?因为php官方网站提供的是tar包,也就是要自己编译。5.3的有人编译好了msi版本的,可以直接拿来直接安装了。apache也是如此。
解压php到D盘(随意),运行php-win.exe,会生产一些文件,如果不运行php-win.exe,没有php.ini-development等配置文件。重命名php.ini-development为php.ini。打开该文件,定位到821行:并修改为如下
; extension_dir = "./" ; On windows: extension_dir = "D:\php-5.3.28\ext"
扩展点路径。根据自己php安装环境配置。因为要用mysql,所以要把mysql模块放开。定位到970行,修改为如下:
extension=php_mysql.dll
去掉分号就是放开了这个设置,注释是用分号实现的。
保存,关闭。
下面安装apache,这个是直接安装,修改路径即可。我也是安装到D盘的。安装完后,进入安装目录。找到conf下的http.conf文件。增加以下内容:
LoadModule php5_module D:/php-5.3.28/php5apache2_2.dll PHPIniDir "D:/php-5.3.28"
这个是加载php模块的,也就是php和apache整合了。
重启apache服务器。在htdocs文件夹内新建test.php,输入一下内容:
<?php phpinfor(); ?>
安装工作就算完成了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
