Archived
1
0
Fork 0
This repository has been archived on 2018-09-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sjqg/funktionen/description.php

9 lines
No EOL
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;
}
?>