Retrieve extension version in php

avasin picture avasin · Jan 31, 2013 · Viewed 14.2k times · Source

Is it possible to get extension version in php?

get_loaded_extensions returns only loaded extentions names, but not versions :(

Answer

EM-Creations picture EM-Creations · Jan 31, 2013

I believe this is what you're looking for:

$version = phpversion("extensionName");

More information