1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/view/logo.png.php
Daniel Neto 484ae5af64 Updates
2023-03-20 10:01:23 -03:00

10 lines
No EOL
253 B
PHP

<?php
header('Content-Type: image/png');
$logo1 = '../videos/userPhoto/logo.png';
$logo2 = '../view/img/logo.png';
//var_dump(file_exists($logo1), file_exists($logo2));exit;
if(file_exists($logo1)){
readfile($logo1);
exit;
}
readfile($logo2);