个人工具

“沙盒”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
Installation
Installation
第11行: 第11行:
 
<pre>
 
<pre>
 
sudo apt install php libapache2-mod-php
 
sudo apt install php libapache2-mod-php
 +
</pre>
 +
 +
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:
 +
 +
<pre>
 +
sudo apt install php-cli
 +
</pre>
 +
 +
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:
 +
 +
<pre>
 +
sudo apt install php-cgi
 +
</pre>
 +
 +
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:
 +
 +
<pre>
 +
sudo apt install php-mysql
 +
</pre>
 +
 +
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:
 +
 +
<pre>
 +
sudo apt install php-pgsql
 
</pre>
 
</pre>

2016年6月12日 (日) 09:37的版本

PHP is a general-purpose scripting language suited for Web development. PHP scripts can be embedded into HTML. This section explains how to install and configure PHP in an Ubuntu System with Apache2 and MySQL.

This section assumes you have installed and configured Apache2 Web Server and MySQL Database Server. You can refer to the Apache2 and MySQL sections in this document to install and configure Apache2 and MySQL respectively.

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