Archived
1
0
Fork 0
This repository has been archived on 2018-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
sjqg/funktionen/description.php

9 lines
205 B
PHP

<?php
include_once("fetchdescription.php");
$imginfo = getImgInfo($allfiles[0]);
if (is_array($imginfo) && isset($imginfo["data"])) {
print htmlentities($imginfo["data"]);
} else {
print $imginfo;
}
?>