We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce48880 commit 7f85bf6Copy full SHA for 7f85bf6
run-tests.php
@@ -877,13 +877,7 @@ function write_information(): void
877
$ext_dir = ini_get('extension_dir');
878
foreach (scandir($ext_dir) as $file) {
879
if (preg_match('/^(?:php_)?([_a-zA-Z0-9]+)\.(?:so|dll)$/', $file, $matches)) {
880
- // workaround dl('mysqli') fatal error
881
- // remove once https://github.com/php/php-src/issues/9196 is fixed
882
- if ($matches[1] === 'mysqli') {
883
- continue;
884
- }
885
-
886
- if (@dl($matches[1])) {
+ if (!extension_loaded($matches[1]) && @dl($matches[1])) {
887
$exts[] = $matches[1];
888
}
889
0 commit comments