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:
16
docs/api/files/webroot%2Fcheck_system.php.txt
Normal file
16
docs/api/files/webroot%2Fcheck_system.php.txt
Normal 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>";
|
||||
}
|
||||
|
Reference in New Issue
Block a user