phpist

Untitled

Oct 27th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php ## Использование функции __autoload().
  2. // Функция автозагрузки классов
  3. function __autoload($classname)
  4. {
  5. require_once(__DIR__ . "/$classname.php");
  6. }
  7. // Использование классов
  8. $page = new PHP7\Page('О нас', 'Содержимое страницы');
  9. $page->tags();
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment