This commit is contained in:
edsea
2025-08-07 02:01:29 +02:00
commit 8b5ba49645
22 changed files with 6487 additions and 0 deletions

11
rss/php/autoload.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
spl_autoload_register(function ($class){
$class = str_replace('App\\', '', $class);
$class = str_replace('\\', '/', $class);
$file = $_SERVER['DOCUMENT_ROOT'] . '/rss/php/class/'.$class.'.php';
if(file_exists($file)){
require_once($file);
}
});