1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-07-24 18:21:48 +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

@@ -133,6 +133,7 @@ Revision history
v0.5.x (latest)
* `webroot/check_system.php` now outputs version of PHP and GD.
* #32 correctly send 404 header when serving an error message.
* Trying to verify issue #29, but can not.
* Adding structure for testprograms together with, use `webroot/test_issue29.php` as sample.

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());
}