Advertisement
CHaNStar

autooding

Feb 12th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2. spl_autoload_register(function ($class_name) {
  3.     include $class_name ..php’;
  4. });
  5.  
  6. $obj  = new MyClass1();
  7. $obj2 = new MyClass2();
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement