Is it possible to get extension version in php?
get_loaded_extensions
returns only loaded extentions names, but not versions :(
Is it possible to get extension version in php?
get_loaded_extensions
returns only loaded extentions names, but not versions :(
curl
& mcrypt
(both return false
), seems to have been there for a long time: bugs.php.net/bug.php?id=40582, no answer found. –
Various PCRE_VERSION
for version info –
Baptista At the command line, where extension is the extension name.
php --re extension | head -1
If unsure of the extension name, list extensions with php -m
.
http://php.net/manual/en/reflectionextension.getversion.php
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getVersion());
?>
© 2022 - 2024 — McMap. All rights reserved.
$version = phpversion("extensionName");
. – Rettarettig