php官网:https://www.php.net
php下载历史版本:https://www.php.net/releases
介绍安装php7.4
1.下载上传服务器解压到目录
2.执行安装命令
#执行安装命令(这里只写的简单的php扩展)
./configure --prefix=/usr/local/php --enable-fpm --with-config-file-path=/usr/local/php/etc --with-curl --with-openssl
#执行安装
make && make install
3.安装命令介绍
./configure
--prefix=/usr/local/php #指定 php 安装目录
--enable-fpm --with-config-file-path=/usr/local/php/etc #用来指定php.ini路径
--with-curl #打开curl浏览工具的支持
-with-openssl #OpenSSL是一套用于SSL/TLS协议的加密工具,用于加密解密
--with-oci8 #连接Oracle数据库的扩展
4.配置相应文件
#复制php.ini文件
cp php.ini-development /usr/local/php/etc/php.ini
#把php-fpm.conf.default复制新的一份名字改为php-fpm.conf
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
#把www.conf.default复制新的一份名字改为www.conf
cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf
- 复制下载php-7.4.33文件夹中的php.ini-development (根据实际需要复制)
5.配置系统环境变量
#在/etc/profile文件中添加变量
vim /etc/profile
#在结尾添加
PATH=$PATH:/usr/local/php/bin
export PATH
#刷新环境变量
source /etc/profile
6.验证设置成功
7.查看php状态
#查看PHP状态
systemctl status php-fpm
#开启php
systemctl start php-fpm
#重启php
systemctl restart php-fpm
- 查看php状态
- 查看php进程
#查看php进程
ps -ef | grep php-fpm
8.配置nginx
server {
listen 80;
server_name localhost;
root /home/wwwroot/laravel/public;#代码目录
index index.php index.html index.htm;
#通过以下设置可有效防止XSS攻击
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
add_header X-XSS-Protection "1; mode=block";
charset utf-8;
#nginx对laravel伪静态
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}
#nginx配置php环境php-fmp开启的9000端口
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# 错误返回页
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
9.下载composer
- 地址:https://pkg.xyz/#how-to-install-composer
- 安装php可以执行
php -r "copy('https://install.phpcomposer.com/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
- 设置全局将前面下载的
composer.phar
文件移动到/usr/local/bin/
目录下面:
mv composer.phar /usr/local/bin/composer
- 设置镜像源:
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
10.安装laravel8
composer create-project --prefer-dist laravel/laravel laravel 8.*