Wie installiere ich Erweiterungsmodule in PHP?
Geben Sie zuerst das entsprechende Modul in das Verzeichnis „ext“ ein und führen Sie dann „/usr/local/php/bin/phpize“ aus, um phpize schließlich auszuführen den Befehl „Make && make install“.
cd /usr/local/src/php-5.4.36/ext/ # PHP 扩展模块一般在这个目录下,如果没有需要自行下载 cd curl/ # 我们以 curl 模块为例 /usr/local/php/bin/phpize # phpize 命令用于扩展 php 扩展模块 ./configure --with-php-config=/usr/local/php/bin/php-config make make install
[root@localhost curl]# vim /usr/local/php/etc/php.ini +885extension=curl.so # 指定扩展模块
[root@localhost curl]# /usr/local/php/bin/php -m | grep curl curl # 查看是否加载了扩展模块
Empfohlenes Tutorial: „PHP“
Das obige ist der detaillierte Inhalt vonWie installiere ich Erweiterungsmodule in PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!