You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 regels
402 B

<?php
$type='spline';
if (isset($_REQUEST['type'])) $type=$_REQUEST['type'];
$files = glob('/opt/TOPISTO/data/'.$type.'/*.png');
usort($files, function($a, $b) {
    return filemtime($a) > filemtime($b);
});
$block_image = @imagecreatefrompng($files[0]);
// ---
// --- envoyer l'image au navigateur
// ---
header("Content-Type: image/png");
imagepng($block_image);
imagedestroy($block_image);
?>