zoukankan      html  css  js  c++  java
  • phpize增加php模块

    一,phpize的好处

    什么时候我们要用phpize呢?我们在安装php时:

    './configure' '--prefix=/usr/local/php' '--with-mysql=/usr/local/mysql' '--with-zlib-dir' '--with-freetype-dir=/usr' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--with-gd' '--enable-ftp' '--with-iconv' '--with-gettext' '--with-curl' '--enable-fastcgi' '--with-openssl'

    后面根的参数是我们要的模块,但是随着工作的需要,我们还要在加些模块,又不想重新编译php,这些我们就可以用phpize了。

    二,安装php模块

    下面我以soap安装为例子

    cd /home/tmp/php-5.2.6/ext/soap                #ext目录下面放的是php的模块库

    /usr/local/php/bin/phpize

    #确定php-config文件在不在,调用php-config,安装后.so文件会自动放到extension_dir里面

    ./configure --enable-soap  --with-php-config=/usr/local/php/bin/php-config

    make && make install

    安装完后会有这样的东西

    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ----------------------------------------------------------------------

    Build complete.
    Don't forget to run 'make test'.

    Installing shared extensions:     usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/

    三,查看.so文件,以及修改php.ini

    cd /usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/

    ls -al |grep soap

    -rwxr-xr-x 1 root  root   763334 Feb  9 10:51 soap.so

    vi /etc/php.ini

    extension_dir="usr/local/php/lib/php/extensions/no-debug-non-zts-20140613/"

    extension=soap.so

    四,重起apache或者phpcgi或者其他

  • 相关阅读:
    HDU 2602
    ZOJ 1074 最大子矩阵和
    POJ 3903
    最大子段和
    HDU 1052
    CodeForces 18C
    CodeForces 546B-Soldier and Badges
    UVA 11462-Age sort
    Codeforces Round #326 (Div. 2)-Duff in Love
    Codeforces Round #327 (Div. 2)-Wizards' Duel
  • 原文地址:https://www.cnblogs.com/jamesbd/p/4037013.html
Copyright © 2011-2022 走看看