Heim  >  Artikel  >  Backend-Entwicklung  >  学习centos安装php的mysql扩展

学习centos安装php的mysql扩展

WBOY
WBOYOriginal
2016-07-25 08:56:361074Durchsuche
  1. # cd /usr/ChenShao/php-5.3.1/
复制代码

2、进入要添加的mysql扩展源码目录:

  1. # cd ext/mysql/
复制代码

2、调用已编译好的php中的phpize:

  1. # /usr/local/php5/bin/phpize
复制代码

3、然后configure:

  1. # ./configure --with-php-config=/usr/local/php5/bin/php-config --with-mysql=/usr/local/mysql
  2. (/usr/local/mysql 为mysql的安装目录)
复制代码

4、

  1. make && make install
复制代码

5、编译之后,自动把mysql.so放到了默认的php扩展目录下(phpinfo可查看,这里为/usr/local/php5/lib/php/extensions/no-debug-zts-20090626),再修改php.ini,去掉;extension=php_mysql.so前面的分号。 注意:生成的模块名叫mysql.so,跟php.ini里面的php_mysql.so名字不一致,必须把mysql.so改名为php_mysql.so,切记切记~! 6、重启apache:

  1. # service httpd restart
复制代码

注意:如果第3步通过了,但第4步报错,则可能是源代码的问题。 可以从php.net下载一份新的文件,重新编译就可以通过了。



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 email检测类(附示例) Nächster Artikel:php 变量$a{0}的作用