Initial commit

This commit is contained in:
2025-10-10 18:24:12 -04:00
commit c0e05bfd81
27 changed files with 10684 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);
}
});