Php Tutorial-how to use phpize. When installing (fastcgi mode), there is often such a command: Copy the code as follows: usrlocalwebserverphpbinphpize I. What is phpize? What is phpize? When installing ph (fastcgi mode), there is often a command like this:
The code is as follows:
/Usr/local/webserver/php/bin/phpize
I. What does phpize do?
What is phpize?
Phpize is used to expand the php Extension Module. phpize can be used to establish a php plug-in module.
For example, if you want to add memcached, ImageMagick, and other extension modules to the compiled php, you can use phpize to perform the following steps.
II. how to use phpize?
After php compilation is complete, the php bin directory contains the phpize script file. Run the following phpize command before compiling the extension module you want to add;
For example, if you want to add the memcache extension module to php, do the following:
The code is as follows:
Tar zxvf memcache-2.2.5.tgz
Cd memcache-2.2.5/
/Usr/local/webserver/php/bin/phpize
./Configure-with-php-config =/usr/local/webserver/php/bin/php-config
Make
Make install
Note: the path of the php-config file can be specified after./configure.
In this way, the compilation is complete. you also need to add the extension value to the php. ini file.
The code is as follows:
Extension = "memcache. so"
Note: Cannot find config. m4.
This error is a silly one. after decompression, you need to cd to the folder. otherwise, phpize will report an error.
The memcache extension library of PHP is dynamically compiled. an error occurs when/usr/localphp/bin/phpize is executed,
The code is as follows:
Cannot find autoconf. Please check your autoconf installation and the $ PHP_AUTOCONF environment variable is set correctly and then rerun this script.
Obviously, files are missing and need to be installed.
The code is as follows:
# Wget http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz
# Tar-zvxf m4-1.4.9.tar.gz
# Cd m4-1.4.9/
#./Configure & make install
# Cd ../
# Wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.62.tar.gz
# Tar-zvxf autoconf-2.62.tar.gz
# Cd autoconf-2.62/
#./Configure & make install
Run the following command to install
#/Usr/local/php/bin/phpize
#. /Configure-prefix =/usr/local/memcached-with-libevent =/usr/local/libevent-with-php-config =/usr/local/php/bin/php- config
# Make & make install
When coding (fastcgi mode), there is often such a command: the code is as follows:/usr/local/webserver/php/bin/phpize I. What is phpize? What is phpize? Ph...