Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function loader($name) {
- if (!file_exists($name . ".php")) {
- throw new LMissingFileException("Hiányzó fájl, nem sikerült meghívni az osztályt", $name);
- $ret = false;
- } elseif (!class_exists($name)) {
- throw new LFailedToLoadClassException();
- $ret = false;
- } else {
- include $name;
- $ret = true;
- }
- return $ret;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement