This article brings you relevant knowledge about PHP, which mainly introduces the relevant content about the installation of Apache, MySQL, and PHP environments. Let's take a look at it together. I hope it will be helpful to everyone.
Preface
Since I am learning PHP development recently, it is inevitable to involve environments such as AMP and NMP. Of course, I initially used integrated environments such as PHPWAMP and PHPStudy. However, since I have installed MySQL server before, when I open my own MySQL again, it seems that due to these integrated environments, the MySQL I installed cannot be opened (because my programming skills are weak, so I am busy I guess it was because the service or something was changed to an integrated environment, so I couldn't connect). In short, I couldn't solve this problem in the end.
But I believe there must be a way to solve it, although in the end I decided to install this AMP environment by myself, and by the way, I could learn Apache and PHP by myself instead of simply becoming someone else's user.
Preparation work
So I need to say here that the order of my installation is APM (Apache->PHP->MySQL). As far as I understand, Apache must be Install it first, because later debugging, environment and other things require the use of Apache.
Apache installation
- Download link:Click to jump
This is the official website of Apache. If we click on the link below, the interface version may be different. After all, the times It will change, sir. Generally speaking, I choose the latest version.
Then jump to the following interface. The one in the red box is the compiled environment. The following three are integrated environments. Because you need to develop and build the environment locally, please select the one in the red box. Link.
Here I chose Apache Haus, but you can also choose Apache Lounge. Of course, I believe everyone will download this interface, but I still post it.
After downloading, unzip it to the folder you want to store it. Here I put it on the C drive. The path is C://Apache/
Next, open the conf folder under the directory and open the httpd.conf configuration file. - The default path of Apache is: "c:\Apache24" (the version number may be different). If it is different from your installation path, you need to modify the path parameter configuration:
Define SRVROOT "Your Apache installation directory"
So here I should writeDefine SRVROOT "C:/ Apache"
- # Of course, there is also the most important port, which defaults to 80, but there may be situations where the port is occupied. So before starting, please enter the following command in cmd to check:
netstat -ano
- If the port is occupied, change the port, in httpd Just change Listen in .conf. Here I use 8499 (my QQ number prefix)
- After doing all this, go to the bin folder under the Apache installation directory in cmd, and enter
httpd -k install
in cmd, because I have already It has been installed, so I cannot show a successful example. You can almost tell whether the installation is successful by reading English. - After completing the previous step, you can see that the Apache service has been installed. [View method: Task Manager->Service->View Service]
- At this time, use cmd to enter in the bin directory under Apache
httpd - k start
, by the way, the restart command will be mentioned here.httpd -k restart
will be often used later. The Apache service will be started here. Of course, you can also start it manually in the service list. This is not good enough. Of course, in order to practice your skills, it is recommended to input using cmd yourself. - Now enter
localhost:[port number]
in the browser to check whether Apache has started successfully. The port number I prepared locally is 8499 (my name starts with QQ), so I enteredlocalhost:8499
in the browser, and when I saw the following interface, the installation was successful. - Due to the need for subsequent installation, here we still use cmd to enter
httpd -k stop
in the bin folder under the Apache installation directory to pause the Apache service to facilitate our next step. For PHP installation, if you only need Apache, of course it will be completely ojbk at this point.
PHP installation
- First of all, let me post the PHP download address: Miaoah
- Here I downloaded the thread-safe version (I don’t know what the difference is, the more the merrier)
- Then unzip it to the directory where you want to put PHP. I still put it hereC://PHP/
- Then copy php.ini-development in the root directory of PHP and rename it php.ini as the PHP configuration file, and then we open php.iniMake changes. Find extension_dir in php.ini, remove the comment and modify it to **"PHP installation path\ext", I installed it in C:/PHP /**, so here is
extension_dir = "C:/PHP/ext"
MySQL installation
- Actually, I am a little too lazy to write, but you can go to Noob [MySQL Installation Tutorial] to take a look, or I will write more about it later.
- Here is the latest version of MySQL [Address]
- But if you install it, because I don’t need other services, so Only MySQLServer is installed. Because I didn’t save the MySQL installation package for this part of the installation, you can check out the novice tutorials or browse CSDN. I won’t go into details here, but let’s talk about the Server Only I chose. After your MySQL is installed, the preparations are all over. Next, we start Apache to connect to PHP, and PHP to connect to MySQL. .
AMP connection work
Apache connection to PHP
The main thing we have to do here is to modify the httpd in the conf folder under the Apache installation root directory .conf to configure Apache and PHP to work together.
- Change Require all denied to Require all granted (I came here for free, I don’t know why)
<directory></directory> AllowOverride none Require all granted
增加一行AddType application/x-httpd-php .php,这个是用来增加Apache1对于php后缀文件的支持的。
现在需要Apache+MySQL+PHP environment installation (example summary)可以作为自己索引页,具体做法就是在DirectoryIndex index.html后面增加索引页index.php。
到了这一步我们基本完成了步骤,这时候我们可以在Apache根目录/htdocs/【我这里是C:\Apache\htdocs】下创建一个HelloPHP.php (只是我想这么叫) ,里面输入:
<?phpphpinfo ();?>
- 接下来测试一下吧,在Apache根目录下的bin目录打开cmd输入
httpd -k start
启动Apache,然后打开浏览器,输入:localhost:【你的端口】/HelloPHP.php,这里我是localhost:8499/HelloPHP.php
,不记得端口号的可以查看上面,配置在httpd.conf里面啦,Listen对应的值。打开之后大概显示如下。 - 这时候我们还是要再次关闭Apache+MySQL+PHP environment installation (example summary),依旧是在Apache根目录下的bin文件夹中打开cmd输入
httpd -k stop
,然后接下来我们配置PHP+MySQL。
PHP连接MySQL
这里我们要做的就是在PHP中加载连接MySQL的程序集。这边有PHP官网的教程【怎么打不开?!!】
- 打开php.ini ,在extension板块中找到extension=php_mysqli.dll然后给它去掉注释就行了。
说明:不同的PHP版本可能提供不同的连接mysq的程序集,去ext文件夹下看看PHP提供的是什么这里就写什么。不同的程序集可能在连接数据库的时候使用的函数也不一样。
- 这时候我们找到前文的HelloPHP.php修改为如下内容:
<?php $mysqli = mysqli_connect("localhost","root","这里是你安装MySQL时候的密码") or die("cannt connet"); ?>
- 启动Apache+MySQL+PHP environment installation (example summary) ,在Apache根目录下的bin目录打开cmd输入
httpd -k start
启动Apache,然后打开浏览器,输入:localhost:【你的端口】/HelloPHP.php,这里我是localhost:8499/HelloPHP.php
,不记得端口号的可以查看上面,配置在httpd.conf里面啦,Listen对应的值。然后发现没有错误信息,那么到此AMP环境的搭建就完成了。
推荐学习:《PHP视频教程》
The above is the detailed content of Apache+MySQL+PHP environment installation (example summary). For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


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

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
