Page 4 of 4 FirstFirst ... 234
Results 31 to 32 of 32
Like Tree6Likes

Thread: Php oop!

  1. #31
    Senior Member CreativityKills's Avatar
    Join Date
    May 2009
    Location
    Lagos
    Posts
    844
    Thanks
    0
    Thanked 106 Times in 62 Posts
    Rep Power
    4

    Default

    Quote Originally Posted by shushant [Only registered and activated users can see links. Click Here To Register...]
    I Like sql_autoload_register as it is time saver
    coz does'nt need to require class in core or config file.
    Nd then starting up new instization of class
    Code:
    $clas = new class;
    to avoid it
    just simple put
    Code:
    sql_autoload_register(function($class){
    require $class.'.php';
    });
    then
    use
    Code:
    $clas = new clas;
    as it will auto require class on instization :D
    You mean spl_autoload_register
    [Only registered and activated users can see links. Click Here To Register...]

  2. #32
    Senior Member shushant's Avatar
    Join Date
    Feb 2011
    Location
    Root
    Posts
    197
    Thanks
    39
    Thanked 36 Times in 20 Posts
    Rep Power
    3

    Default

    Quote Originally Posted by CreativityKills [Only registered and activated users can see links. Click Here To Register...]
    You mean spl_autoload_register
    Yes,
    sry for
    small spell error

Page 4 of 4 FirstFirst ... 234

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19