Heim >Backend-Entwicklung >PHP-Tutorial >如何查看一个写在php.ini的so模块是否已经被加载?

如何查看一个写在php.ini的so模块是否已经被加载?

WBOY
WBOYOriginal
2016-06-06 20:30:151451Durchsuche

如何查看一个写在php.ini的so模块是否已经被加载?

回复内容:

如何查看一个写在php.ini的so模块是否已经被加载?

<code>php</code><code>if (!extension_loaded('gd')) {
    if (!dl('gd.so')) {
        exit;
    }
}
php -m |grep gd
</code>

CLI: php -i | grep YOUR_EXT_NAME,或者直接php -m

FastCGI / ISAPI / CGI: phpinfo();

楼上的办法可以,如果在不能运用命令行的情况下或者phpinfo不可用,
用array ini_get_all ([ string $extension [, bool $details = true ]] )可以帮你。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn