search
HomeBackend DevelopmentPHP TutorialDetailed explanation of how to use WAMP to build a PHP local development environment

This article mainly introduces in detail the relevant information on using WAMP to build a PHP local development environment. It has certain reference value. Interested friends can refer to it.

Written in front If so

PHP is a server scripting language, so it needs to be run on the server. As a novice, setting up a server may take a long time, and you may not be able to get it right. Therefore, in the entry-level stage, in order to spend more time getting familiar with the programming language, using an integrated environment is the best and most convenient choice. This article will introduce how to build a PHP development environment on the windows platform.

Install the integrated environment

1. Download the integrated environment packageWampServer official website

Downloaded by me It is Wampserver 3.0.6 64 bit. After downloading, double-click to install.

The software installed by wamp 3.0.6 is:

Apache 2.4.23
PHP 5.6.25/7.0.10
MySQL 5.7.14
PhpMyAdmin 4.6.4
Adminer 4.2.5
PhpSysInfo 3.2.5

* The configurations of apache 2.4 and above will be slightly different from those below 2.4
* wamp will be installed at the same time PHP5 and PHP7 can be switched after the installation is completed.

2. An error occurs during the installation process.

If a prompt appears during the installation process that msvcr110 is missing. dll and other files, please download vcredist_x64.exe first to install the environment required by wamp.

Server configuration

1. Project path

After installing wamp, there is a www folder under the installation path. This folder is used to store your project files. Only files in this directory will be recognized and executed by the server.

For example: the directory I selected when installing wamp is

D:\wamp64

, then the directory where the project files are stored after installation is

D:\wamp64\www

Of course, if you don’t want to use the default www folder, you can also modify the apache configuration, Specify a directory for the server to parse.

Find the apache configuration file in the installation directoryhttpd.conf

Installation directory\bin\apache\apache2.4.23\conf\httpd.conf

Use Notepad or other editor to open the file, find

DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
...
</Directory>

and change ${INSTALL_DIR}/www to The directory that needs to be specified

Then, also find thehttpd-vhosts.conffile

extra\httpd-vhosts.conf

#打开文件↓

<VirtualHost *:80>
  ServerName localhost
  DocumentRoot D:/wamp64/www
  <Directory "D:/wamp64/www/">
  ...
  </Directory>
</VirtualHost>

modify in the directory D:/wamp64/www is the directory that needs to be specified. In this way, the server will parse the files in this directory in the future.
*After modifying the configuration, remember to restart the server

2. Test

Create a new project to test whether the server Available.

Create a new test folder under the www folder, create a new test.php in the folder, and write some output statements in the php file. For example, a sentence that programmers must write when getting started:

echo 'Hello World!';

Then open the browser and enter

in the address bar.

localhost/test/test.php

If your browser displays the words Hello World!, it means that your server is ready for use.

3. Configure virtual host

I don’t like to use localhost/project file name/ xxx.php/…Access this way? Then you can configure a virtual host. After configuration, you can access it in a form like www.test.com (customizable).

First find the httpd-vhosts.conf file and open the

installation directory\bin\apache\apache2.4.23\conf\extra\httpd-vhosts.conf

Add

<VirtualHost *:80>
  #设置主机名(可自己设置)
  ServerName www.test.com
  #设置主机别名,即用该别名也可以访问(前提是域名解析正确)
  ServerAlias test.com
  #设置该站点根目录
  DocumentRoot "D:\wamp64\www\test"
  #设置文件夹访问控制,其路径要和上一行的DocumentRoot一样,
  <Directory "D:\wamp64\www\test">
    #用于显示设定“可显示文件列表”(当无可显示网页的时候)
    Options Indexes
    #启用文件夹访问控制的文件.htaccess设置
    AllowOverride All
    #请求控制
    Require all granted
    #默认打开的页面设置
    DirectoryIndex index.php index.html
  </Directory>
</VirtualHost>

at the end of the file. Then, find the hosts file. The path to the hosts file for win10 is:

C:\Windows\System32\drivers\etc
#每个系统都不一样,可以去问问百度

Add 127.0.0.1 www.test.com at the end of the file (be careful not to lose the spaces in the middle) and save.
*If you are prompted to save as, you can save as first, and then change the file name of the saved as file to hosts, overwriting the original hosts file

...
# Additionally, comments (such as these) may be inserted on inpidual
# lines or following the machine name denoted by a &#39;#&#39; symbol.
#
# For example:
#
#   102.54.94.97   rhino.acme.com     # source server
#    38.25.63.10   x.acme.com       # x client host

# localhost name resolution is handled within DNS itself.
#  127.0.0.1    localhost
#  ::1       localhost

127.0.0.1 www.test.com

The purpose of modifying hosts is so that when the browser accesses, the system will not submit the domain name (www.test.com) to the DNS server, but directly find the IP address according to the hosts file (this is the local ), submit for analysis. In this way, our local server can resolve this domain name.

4、局域网远程访问

如果需要在局域网中能通过链接访问站点(例如开发web app时使用手机测试),那么就需要开启服务器远程访问权限了。

打开apache配置文件httpd.conf

安装目录\bin\apache\apache2.4.23\conf\httpd.conf

修改AllowOverride和Require配置为如下

DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
  ...
  AllowOverride all
  Require all granted
  ...
</Directory>

同时需要修改httpd-vhosts.conf文件,修改相同的配置

<VirtualHost *:80>
  ServerName localhost
  DocumentRoot D:/wamp64/www
  <Directory "D:/wamp64/www/">
    ...
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

若只需要访问其中某一个站点,则首先需要给这个站点配置虚拟主机,然后在该虚拟主机的配置中修改AllowOverrideRequire

好了,使用WAMP搭建PHP本地开发环境的基本步骤就这些了。搭建好这些你也算是走上程序员的“不归路”了。

若您发现文章有哪里不正确的地方,欢迎指正。

相关推荐:

webpack搭建react开发环境步骤详解

Docker搭建PHP开发环境步骤详解

本地开发环境不能用IP访问如何处理

The above is the detailed content of Detailed explanation of how to use WAMP to build a PHP local development environment. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

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

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

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools