PHP Code:
$arr = get_loaded_extensions();
print_r($arr);
or if too lazy to search manually, umm
PHP Code:
$arr = get_loaded_extensions();
if(in_array('gd', $arr))
echo 'ok'; //returns status ok
else
echo 'false'; //returns status false (gd not found)
Leave a comment: