1. 程式人生 > >php動態載入模組gettext

php動態載入模組gettext

安裝php的模組有兩種方式:

一、重新編譯php,加上--with-gettext

二、動態安裝

  1、下載同版本的php原包,解壓後進入ext目錄,目錄下便是模組

  2、進入gettext目錄下執行:

    /usr/local/php/bin/phpize

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

    make

    make install

      MAC安裝時如遇到如下錯誤:

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

      cp: /usr/lib/php/extensions/no-debug-non-zts-20131226/#[email protected]#: Operation not permitted

      重啟,按command+R,在命令終端輸入csrutil disable

   3、在php.ini裡新增上gettext.so

    extension = "gettext.so"