I feel like phpize is a bit complicated. Is there a simpler installation method?
世界只因有你2017-05-16 13:01:44
phpize
Installation is very simple
$ phpize
$ ./configure
$ make && make install
It’s done :)
迷茫2017-05-16 13:01:44
There are two ways to install PHP extensions:
One is put in during compilation
The other is dynamically expanded using phpize (phpize is not complicated either)
There is also the pecl install method