Skip to content
Snippets Groups Projects
function.logo_of_the_day.php 416 B
Newer Older
  • Learn to ignore specific revisions
  • Imran Hussain's avatar
    Imran Hussain committed
    function smarty_function_logo_of_the_day($params, &$smarty)
    {
    
        $logos = glob("../htdocs/images/awesomelogos/*.png");
        $logo_of_the_day = $logos[array_rand($logos)];
        $logo_size = getimagesize($logo_of_the_day);
        $width_height_string = $logo_size[3];
    
        $logo_src = str_replace("../htdocs", "", $logo_of_the_day);
    
        return "<img src=\"$logo_src\" $width_height_string alt=\"SUCS\" />";
    }