乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
centos安装php | chenzuoli's blog

centos安装php

centos7如何安装php环境,且看这篇文章。

方法1:

1
2
yum install php php-devel

方法2:

  1. 依赖:

    1
    yum install -y bzip2-devel libcurl-devel libxml2-devel sqlite-devel oniguruma oniguruma-devel libxml2 libxml2-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel zstd libzstd-devel curl libcurl-devel libpng libpng-devel
  2. 下载

    1
    2
    wget https://www.php.net/distributions/php-8.1.9.tar.gz --no-check-certificate
    tar -xzxvf php-8.1.9.tar.gz
  3. 编译

    1
    2
    3
    4
    5
    6
    mkdir /usr/local/php-8.1.9_build
    cd php-8.1.9
    ./configure --prefix=/usr/local/php-8.1.9_build --enable-fpm --with-mysqli --enable-mbstring --with-bz2 --with-curl --enable-gd --with-zip --with-zlib --with-openssl
    make -j2 # 双核服务器参数配置
    make install
    cd ..

书山有路勤为径,学海无涯苦作舟。

欢迎关注微信公众号:【程序员写书】
程序员写书

喜欢宠物的朋友可以关注:【电巴克宠物Pets】
电巴克宠物

一起学习,一起进步。

-------------本文结束感谢您的阅读-------------