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

adding phpdoc fix #48

This commit is contained in:
Mikael Roos
2015-03-04 11:00:36 +01:00
parent 1de4830c96
commit e9037bc0ed
146 changed files with 42719 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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.<br>";
$no = extension_loaded('exif') ? null : 'NOT';
echo "Extension exif is $no loaded.<br>";
if (!$no) {
echo "<pre>", var_dump(gd_info()), "</pre>";
}