个人工具

沙盒

来自Ubuntu中文

192.157.242.155讨论2016年6月12日 (日) 11:25的版本

跳转至: 导航, 搜索

PHP是一种通用的适合Web开发的脚本语言。PHP脚本可以嵌入到HTML。这一节介绍如何在一个已安装Apache2和MySQL的Ubuntu系统中安装及配置PHP.

这一节假定你已经在Ubuntu中安装并配置了Apache2 Web Server及MySQL Database Server。你可以引用有关Apache2和MySQL的相关章节以安装和配置Apache2及MySQL。

Installation

PHP is available in Ubuntu Linux. Unlike python and perl, which are installed in the base system, PHP must be added.

To install PHP and the Apache PHP module you can enter the following command at a terminal prompt:

sudo apt install php libapache2-mod-php

You can run PHP scripts at a terminal prompt. To run PHP scripts at a terminal prompt you should install the php-cli package. To install php-cli you can enter the following command at a terminal prompt:

sudo apt install php-cli

You can also execute PHP scripts without installing the Apache PHP module. To accomplish this, you should install the php-cgi package. You can run the following command at a terminal prompt to install the php-cgi package:

sudo apt install php-cgi

To use MySQL with PHP you should install the php-mysql package. To install php-mysql you can enter the following command at a terminal prompt:

sudo apt install php-mysql

Similarly, to use PostgreSQL with PHP you should install the php-pgsql package. To install php-pgsql you can enter the following command at a terminal prompt:

sudo apt install php-pgsql

Configuration

If you have installed the libapache2-mod-php or php-cgi packages, you can run PHP scripts from your web browser. If you have installed the php-cli package, you can run PHP scripts at a terminal prompt.

By default, when libapache2-mod-php is installed, the Apache 2 Web server is configured to run PHP scripts. In other words, the PHP module is enabled in the Apache Web server when you install the module. Please verify if the files /etc/apache2/mods-enabled/php7.0.conf and /etc/apache2/mods-enabled/php7.0.load exist. If they do not exist, you can enable the module using the a2enmod command.

Once you have installed the PHP related packages and enabled the Apache PHP module, you should restart the Apache2 Web server to run PHP scripts. You can run the following command at a terminal prompt to restart your web server:

sudo systemctl restart apache2.service

Testing

To verify your installation, you can run the following PHP phpinfo script:

  <?php
    phpinfo();
?>

You can save the content in a file phpinfo.php and place it under the DocumentRoot directory of the Apache2 Web server. Pointing your browser to http://hostname/phpinfo.php will display the values of various PHP configuration parameters.

References

  1. For more in depth information see the php.net documentation.
  2. There are a plethora of books on PHP. A good book from O'Reilly is Learning PHP. PHP Cook Book is also good, but has no yet been updated for PHP7.
  3. Also, see the Apache MySQL PHP Ubuntu Wiki page for more information.