Home Backend Development PHP Tutorial Teach you how to build a PHP development environment with WinXP_PHP Tutorial

Teach you how to build a PHP development environment with WinXP_PHP Tutorial

Jul 15, 2016 pm 01:32 PM
apache php winxp address learn Install develop build teach you server environment

Build a PHP development environment on WinXP 1. Install the Apache server

Address: http://httpd.apache. org/download.cgi

Download the current new version: apache_2.2.13-win32-x86-openssl-0.9.8k.msi

Just run the installation file directly.

The installation path in this example: D:Program FilesApache Software FoundationApache2.2

Build a PHP development environment on WinXP 2. Install PHP

The latest stable one The version is PHP 5.2.11, but there is no corresponding PECL package. The 5.2.6 PECL package can still run on this version. I also chose to use version 5.2.6. Download address: http://www.php.net/releases/

Download two files: php-5.2.6-Win32.zip, pecl-5.2.6-Win32.zip. The first file is the PHP interpreter, and the second is PECL (The PHP Extension Community Library), which contains C language code that can be compiled into PHP Core, so the PECL extension library can be compiled into a dynamically loadable .so A shared library that extends the PHP language from the bottom up.

Extract the two compressed files and copy all dll files under pecl-5.2.6-Win32 to the ext directory under php-5.2.6-Win32. Then put php-5.2.6-Win32 where you want it. The PHP core interpreter is installed successfully.

Installation path in this example: D:Program FilesPHPphp-5.2.6-Win32

Two files need to be modified:

1) PHP configuration file. There are two built-in files in the PHP installation path: php.ini-dist and php.ini-recommended. Let's modify the first one, make a copy of the first file and change the name to php.ini.

Modify: extension_dir item, which specifies the location of the extension dll directory. Change to: extension_dir = "D:/Program Files/PHP/php-5.2.6-Win32/ext"

doc_root item, which specifies the path of the web server. Change to: doc_root = "D:/Program Files/Apache Software Foundation/Apache2.2/htdocs"

Enable certain extensions. Some already exist, but have been commented out. Just replace the ; sign before the line. If you don't know which ones you will use, you can skip this step for now.

2) Apache configuration file. Add PHP to Apache configuration. Modify the httpd.conf file in the conf in the Apache installation directory and add the following statement:

LoadModule php5_module "D:/Program Files/PHP/php-5.2.6-Win32/php5apache2_2.dll"

PHPIniDir "D:/Program Files/PHP/php-5.2.6-Win32/"

AddType application/x-httpd-php .php

It should be noted that "D :/Program Files/PHP/php-5.2.6-Win32/php5apache2_2.dll" must use double quotes, otherwise Apache cannot start the service.

Build a PHP development environment on WinXP 3. Test the installation.

Create a test file test.php in the directory of the Apache server

File content:

Start the server, Visit http://127.0.0.1/. All configuration information of PHP will be printed.

4. Install PEAR.

Just run the go-pear.bat command in the PHP directory. Just press Enter during the installation process. PEAR is PHP's official open source class library, the abbreviation of PHP Extension and Application Repository. Pear means pear in English. PEAR compiles commonly used functions in the PHP program development process into class libraries, covering many aspects such as page rendering, database access, file operations, data structures, cache operations, network protocols, etc., and can be used easily by users.

Build a PHP development environment on WinXP 5. Configure the environment variables and add the PHP installation directory to the path.

Otherwise, some functions supported by PHP cannot be found, such as the libmysql.dll file related to supporting MySQL. If you search online, some people will tell you to copy this file to the window directory. To solve the same problem, setting path is obviously more professional.

Building a PHP development environment on WinXP 6. The editor I chose is Zend, and Eclipse also has a dedicated PHP editor.

Zend will start to use Eclipse plug-in technology for development after 7.0. The style is the same as Eclipse. I don’t know if it is to attract a large number of Java developers.

Build a PHP development environment on WinXP 7. If you use Zend, put the code of the PHP project in the workspace.

php is not a programming language, just a script, and does not need to be compiled. Therefore, you can configure Apache's project release directory to the workspace, so that you can see the results after writing the code, which is very convenient.

That is, modify the DocumentRoot item in the conf/httpd.conf file in the Apache installation directory to the location of the workspace.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446132.htmlTechArticleBuilding a PHP development environment on WinXP 1. Install the Apache server address: http://httpd.apache.org/download. cgi Download the current new version: apache_2.2.13-win32-x86-openssl-0.9.8k.msi Run the installation file directly...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

See all articles