I have a site which uses the library file lib.client.php which is stored in the php folder in my standard website root and contains a series of classes I have built.
The library file contains about 5 or so classes, should I leave this file as one or break up the classes into their own files and include them all individually? Are there any best practice naming conventions I should use for these file(s)?
(As you can see at the moment I'm using lib. and I also use inc. - only because I have seen it done a few times before).
UPDATE:
I am remodelling my structure to comply with the PSR-0 Standard. I now have:
- CCall (Vendor)
- Core
- Connection
- Gateway.php
- GatewayDSN.php
- GatewayException.php
- Connection
- Components
- Environment.php
- EnvironmentRequest.php
- Centre.php
- Access
- User.php
- UserSession.php
- RenderException.php
- Core
I want to create a new Environment() in index.php, and its __construct method calls Gateway::checkInstance().
- How would I manage namespace use in this model? What would have its own namespace and where would I define this?
- How would I use an autoload with these namespace definitions (and where?)
- Is there an equivalent standard for method and property naming?
I am using this https://gist.github.com/jwage/221634/download#