How to install php environment under linux
linux安装php环境的方法:首先下载PHP安装包并解压;然后添加www用户组和www用户;接着使用su超级用户登录Linux,编译PHP参数;最后编译安装PHP并修改Apache的配置文件即可。
推荐:《PHP视频教程》
Linux 下安装配置 PHP
1)下载PHP安装包,下载地址: http://www.php.net/downloads.php ,这里选用PHP 5.6版本
并解压PHP安装包
wget cn2.php.net/get/php-5.6.31.tar.gz/from/this/mirror gzip -d php-5.6.31.tar.gz tar xvf php-5.6.31.tar
2)添加www用户组和www用户(如果系统中已存在该用户组,不用添加该用户组)
groupadd www useradd -g www -s /sbin/nologin -M www
3) 使用su超级用户登录Linux ,编译PHP参数
su #./configure \\\\ --prefix=/usr/local/php \\\\ --with-mysql=/usr/local/mysql \\\\ --with-apxs=/usr/local/apache2/bin/apxs \\\\
--prefix 指定安装路径
--with-mysql 指定mysql路径
--with-apxs 指定apahce路径
在接下来的编译过程如果报错,可以根据报错调用 ./configure --help查看编译参数,并下载安装相应的依赖包;
4)编译,安装PHP
make make install
5)修改Apache的配置文件,使其支持php, 对 apache 的 httpd.conf 作以下修改
在“ AddType application/x-gzip .gz .tgz”下添加
AddType application/x-httpd-php .php AddType application/x-httpd-php-source .php5
在"< IfModule dir_module>"内的内容添加"index.php",即如下:
<IfModule dir_module> DirectoryIndex index.html index.php </IfModule>
将" #ServerName www.example.com:80" 修改为
ServerName 127.0.0.1:80
或
ServerName localhost:80
6)复制 php-5.6.31安装包中的配置文件
cp php-5.6.31/php.ini.dist /usr/local/php/lib/php.ini
如果“ php.ini.dist”不存在,可以将“ php.ini-development ”或“ php.ini-production”之一更改为“ php.ini.dist”再执行以上指令
更改 php.ini 文件
register_globals = On
7)测试安装是否完成
重启Apache
service apache restart
随便编写一个php 文件(加入命名为test.php),放置在apache/htdoc中,在浏览器其中访问: http://127.0.0.1/test.php
如果能够正确显示php文件中的内容,则安装成功;
快速安装方式
在Centos下可以使用yum工具,在Ubuntu下使用apt-get工具,可以实现快速的安装方式,用法基本一样,这里演示使用yum安装PHP
1)查看系统中是否已经存在PHP
rpm -qa php
2) 安装PHP
yum -y install php
3)查看PHP安装信息
chkconfig php on
如果yum源上的php版本过低,比如要安装php5.6版本,可以通过以下方法:
1)配置centos epel 和 remi源
# Centos 6 rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm #Centos 7 yum install epel-release
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
2)查看可安装包
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
3)安装PHP
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
The above is the detailed content of How to install php environment under linux. For more information, please follow other related articles on the PHP Chinese website!

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.

The... (splat) operator in PHP is used to unpack function parameters and arrays, improving code simplicity and efficiency. 1) Function parameter unpacking: Pass the array element as a parameter to the function. 2) Array unpacking: Unpack an array into another array or as a function parameter.

In PHP, the final keyword is used to prevent classes from being inherited and methods being overwritten. 1) When marking the class as final, the class cannot be inherited. 2) When marking the method as final, the method cannot be rewritten by the subclass. Using final keywords ensures the stability and security of your code.

C language conditional compilation is a mechanism for selectively compiling code blocks based on compile-time conditions. The introductory methods include: using #if and #else directives to select code blocks based on conditions. Commonly used conditional expressions include STDC, _WIN32 and linux. Practical case: Print different messages according to the operating system. Use different data types according to the number of digits of the system. Different header files are supported according to the compiler. Conditional compilation enhances the portability and flexibility of the code, making it adaptable to compiler, operating system, and CPU architecture changes.

I developed a project called Lua-Libuv and am happy to share my experience. The original intention of the project is to explore how to use Libuv (an asynchronous I/O library written in C) to build a simple HTTP server without having to learn the C language in depth. With the help of ChatGPT, I completed the basic code of HTTP.C. When dealing with persistent connections, I successfully implemented closing the connection and freeing resources at the right time. At first I tried to create a simple server that ended the main program by closing the connection, but I had some problems. I've tried sending blocks of data using streaming, and while it works, this blocks the main thread. In the end, I decided to give up on this approach because my goal was not to learn C language in depth. Finally, I

Strict types in PHP are enabled by adding declare(strict_types=1); at the top of the file. 1) It forces type checking of function parameters and return values to prevent implicit type conversion. 2) Using strict types can improve the reliability and predictability of the code, reduce bugs, and improve maintainability and readability.
