BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
home
/
vssraipur
/
public_html
/
dompdf
/
lib
/
php-svg-lib
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: autoload.php
<?php /** * @package php-svg-lib * @link * @author Fabien Ménager <fabien.menager@gmail.com> * @license GNU LGPLv3+ */ spl_autoload_register(function($class) { if (0 === strpos($class, "Svg")) { $file = str_replace('\\', DIRECTORY_SEPARATOR, $class); $file = realpath(__DIR__ . DIRECTORY_SEPARATOR . $file . '.php'); if (file_exists($file)) { include_once $file; } } });
Save
Cancel