1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-07-23 09:41:39 +02:00

Helper to check if img.php is supported on this system

This commit is contained in:
Mikael Roos
2014-05-20 00:12:46 +02:00
parent 67d0cf27ee
commit dedd01bc71

4
webroot/check_system.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
$no = extension_loaded('gd') ? null : 'NOT';
echo "Extension gd is $no loaded.";