Locate available (not loaded) PHP extensions

后端 未结 3 939
再見小時候
再見小時候 2021-01-17 23:26

I need a way to find all the available PHP extensions whether they are loaded or not. I looked at How do I see the extensions loaded by PHP? but it only explains h

3条回答
  •  情话喂你
    2021-01-18 00:05

    One way is to check the 'extension_dir' value:

    phpinfo();
    

    Then scan the directory to see the files:

    $exts = scandir("/usr/lib/php5/extension_dir/");
    print_r($exts);
    

提交回复
热议问题