PHP check whether an extension is loaded – PHP December 14, 2011 Pramod T P Leave a comment $extensionName=”curl”;//extension name to be checked if(!extension_loaded($extensionName)) { echo “The extension is not loaded”; }