mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 08:32:42 +00:00
Add support for SourceGuardian Loader (#442)
This commit is contained in:
parent
872d4e5302
commit
f9cf2dedc3
3 changed files with 76 additions and 4 deletions
30
scripts/tests/sourceguardian
Executable file
30
scripts/tests/sourceguardian
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
set_error_handler(
|
||||
static function ($errno, $errstr, $errfile, $errline) {
|
||||
$msg = "Error {$errno}: {$errstr}\n";
|
||||
if ($errfile) {
|
||||
$msg .= "File: {$errfile}\n";
|
||||
if ($errline) {
|
||||
$msg .= "Line: {$errline}\n";
|
||||
}
|
||||
}
|
||||
fwrite(STDERR, $msg);
|
||||
exit(1);
|
||||
},
|
||||
-1
|
||||
);
|
||||
|
||||
$rc = 0;
|
||||
foreach ([false => 'PHP module', true => 'Zend extension'] as $type => $typeName) {
|
||||
$extensions = get_loaded_extensions($type);
|
||||
$extensionsLowerCase = array_map('strtolower', $extensions);
|
||||
if (in_array('sourceguardian', $extensionsLowerCase, true)) {
|
||||
fwrite(STDOUT, "The SourceGuardian {$typeName} is loaded.\n");
|
||||
} else {
|
||||
fwrite(STDERR, "The SourceGuardian {$typeName} is not loaded.\nLoaded extensions are: \n- " . implode("\n- ", $extensions));
|
||||
$rc = 1;
|
||||
}
|
||||
}
|
||||
exit($rc);
|
Loading…
Add table
Add a link
Reference in a new issue