1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-10 01:56:52 +02:00

check if extension exif is loaded #36

This commit is contained in:
Mikael Roos
2014-09-01 01:27:45 +02:00
parent 8523ef5e31
commit ec3a6f3491
2 changed files with 4 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ echo 'Running on: ' . $_SERVER['SERVER_SOFTWARE'] . '<br><br>';
$no = extension_loaded('gd') ? null : 'NOT';
echo "Extension gd is $no loaded.<br>";
$no = extension_loaded('exif') ? null : 'NOT';
echo "Extension exif is $no loaded.<br>";
if (!$no) {
echo "<pre>", var_dump(gd_info()), "</pre>";
}