mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
10 lines
No EOL
253 B
PHP
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); |