开发者

PHP: Class segmentation? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.

Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.

开发者_如何转开发Closed 4 years ago.

Improve this question

I'm building an Authentification library that's going to have around 45+ methods for dealing with user related stuff. However I've been wondering if it's actually recommendable to keep everything on a single file.

Is there a benefit on splitting my class into several subclasses and load them when needed?

I can always for example split the class into "mandatory" elements and the elements that only registered users need...

For example:

  • Mandatory Methods:

    • $user->is_logged()
    • $user->login()
    • $user->register()
  • Methods for Register...

  • Methods for logged-in user.


It just depends on how you want to be including the class file(s) in your pages. If you want one simply include() statement for every page, then keep it all in one file. Unless your library is HUGE, the overhead from the other classes shouldn't be too much.

If you do it the other way, you'll simply be including different files based on the status of the session of the client.

Personally, I'd split them up as it's easier to edit them that way, but it's totally up to you.


I'd go with the class/sub-class option.

You could then use a factory to return the correct type of user object based on the current URL or by simply specifying the desired type of user object if your particular setup doesn't lend itself to this.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜