Mega Code Archive

 
Categories / Php / Code Snippets
 

Check whether the GD library exists or is installed

<?php if(!function_exists("gd_info")) print "GD is not installed on this server"; if(function_exists("gd_info")) print "GD <b>is</b> installed on this server!"; ?>