You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (in_array($extension, $current_php_extensions)) {
echo "PHP $extension extension is loaded ... OK\n";
$requirement_met = true;
break;
}
}
if (!$requirement_met) {
echo("[Missing Dependency] You're using PHP installation which does not have at least one of the following extension enabled: " . implode(' or ', $requirement). "\n");
exit(1);
}
} else {
// check for required extension
if (in_array($requirement, $current_php_extensions)) {
echo "PHP $requirement extension is loaded ... OK\n";
} else {
echo("[Missing Dependency] You're using PHP installation which does not have '$extension' extension enabled\n");