1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-07-30 21:20:11 +02:00

Extended info printed #35

This commit is contained in:
Mikael Roos
2014-08-21 00:31:05 +02:00
parent 1e70883771
commit 2b0b3859a7
2 changed files with 10 additions and 1 deletions

View File

@@ -1,4 +1,12 @@
<?php
echo 'Current PHP version: ' . phpversion() . '<br><br>';
echo 'Running on: ' . $_SERVER['SERVER_SOFTWARE'] . '<br><br>';
$no = extension_loaded('gd') ? null : 'NOT';
echo "Extension gd is $no loaded.";
echo "Extension gd is $no loaded.<br>";
if (!$no) {
var_dump(gd_info());
}