Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
    • Components
      • Environment.php
      • EnvironmentRequest.php
      • Centre.php
      • Access
        • User.php
        • UserSession.php
      • RenderException.php

I want to create a new Environment() in index.php, and its __construct method calls Gateway::checkInstance().

  1. How would I manage namespace use in this model? What would have its own namespace and where would I define this?
  2. How would I use an autoload with these namespace definitions (and where?)
  3. Is there an equivalent standard for method and property naming?

I am using this https://gist.github.com/jwage/221634/download#

share|improve this question

2 Answers

Break classes into their own files and follow the PSR-0 standard as a best practice. http://phpmaster.com/autoloading-and-the-psr-0-standard/

share|improve this answer
I have updated my question with some changes I've made following the PSR-0 standard, are you able to answer the question on namespace with PSR-0? – William Hand Feb 13 at 13:08

If you are using a PSR-0 autoload:

add this in Environment.php

namespace Components;

and add a reference to Gateway

use Core\Connection\Gateway;

of course you need this line inside Gateway.php

namespace Core\Connection;

Then:

new Components\Environment();
share|improve this answer
And would the loader take a similar input? $classLoader = new SplClassLoader('CCall\Components\Environment', './lib/CCall/Components'); for environment etc? – William Hand Feb 13 at 14:09
yes, first you need to register "the namespace". require_once("SplClassLoader.php"); $loader = new SplClassLoader('CCall\', './lib/CCall''); $loader->register(); new Components\Environment(); – db80 Feb 13 at 15:01
I get a syntax error because of the \' how can I get around that? – William Hand Feb 13 at 15:29
maybe new SplClassLoader('CCall', '/lib/CCall''). sorry but i can't test the code. – db80 Feb 13 at 15:39
So what does input does the class want? Is it the route to the folder the class file is contained in and the parent namespace? Aka to load environment file new SplClassLoader('CCall\Component', '/lib/CCall/Component'') – William Hand Feb 13 at 16:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.