Skip to content
Snippets Groups Projects
Select Git revision
  • 858cdf8afec2dbdc240ac4934b6c0d4a61611b2c
  • main default protected
2 results

utils.ts

Blame
  • test_image.php 386 B
    <?php
    $p = "i18n/fr_FR/contents/tuto/modifier-temps-avant-deconnexion.png";
    
    // header("Content-type: image/png");
    header('Content-Length: '. filesize("./" . $p));
    
    // $img = imagecreatefrompng($p);
    // $img = imagecreatefrompng($tutoContentsPath . $subpage) OR DIE("ERREUR");
    
    // imagepng($img);
    // fopen("i18n/fr_FR/contents/tuto/parametres.png") or die("erreur");
    readfile("./" . $p);