Heim >Backend-Entwicklung >PHP-Tutorial >ubuntu php环境搭建

ubuntu php环境搭建

WBOY
WBOYOriginal
2016-06-20 12:32:49977Durchsuche

1.安装apache

sudo apt-get install apache2

修改默认的网站根目录的路径Apache的第一个配置文件apache2.conf的路径

/etc/apache2/apache2.conf

<Directory /var/www/>

Apache的第二个配置文件000-default.conf的路径

/etc/apache2/sites-available/000-default.conf

修改路径为/var/www/

DocumentRoot /var/www/html

2.安装php5

sudo apt-get install php5

3.安装pdo mysqlPDO(PHP Data Object) 是PHP 5新出来的数据库处理方式,由于php的许可与myslq的许可冲突,PHP的后续版本可能不再捆绑mysql。那么php_mysql.dll可能也不在默认支持。pdo属于pecl.php.net的项目,可以用pear安装,先安装php-pear

apt-get install php-pearsudo apt-get install php5-devsudo apt-get install libmysqlclient15-dev

然后可以安装pdo了

pecl search pdosudo pecl install pdosudo pecl install pdo_mysql

此时会报错如下:

以上表示在pear中找不到pdo_mysql 驱动,需要重新安装php5-mysql

sudo apt-get install php5-mysql

安装成功后,运行正常。虽然我们好像已经在apt安装过该php5-mysql,但是这里还是需要再安装一遍最后,修改

/etc/php5/apache2/php.ini

添加代码

extension=pdo.soextension=pdo_mysql.so

这样就可以通过php5来连接mysql了

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP命名空间和自动加载类Nächster Artikel:PHP 5.6.20 发布