| | |
| | | $ext_dir = ini_get('extension_dir'); |
| | | |
| | | $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; |
| | | foreach ($required_php_exts AS $name => $ext) { |
| | | foreach ($required_php_exts as $name => $ext) { |
| | | if (extension_loaded($ext)) { |
| | | $RCI->pass($name); |
| | | } else { |
| | |
| | | <p class="hint">The next couple of extensions are <em>optional</em> and recommended to get the best performance:</p> |
| | | <?php |
| | | |
| | | foreach ($optional_php_exts AS $name => $ext) { |
| | | foreach ($optional_php_exts as $name => $ext) { |
| | | if (extension_loaded($ext)) { |
| | | $RCI->pass($name); |
| | | } |
| | |
| | | <?php |
| | | |
| | | $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; |
| | | foreach ($supported_dbs AS $database => $ext) { |
| | | foreach ($supported_dbs as $database => $ext) { |
| | | if (extension_loaded($ext)) { |
| | | $RCI->pass($database); |
| | | } |