Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6469333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:58:41+00:00 2026-05-25T05:58:41+00:00

Ok in very simple, small projects it is probably common to have classes defined

  • 0

Ok in very simple, small projects it is probably common to have classes defined in files that are named accordingly. So that for example this autoload function would work:

function __autoload($class_name) {
    require_once $class_name . '.php';
}

But when a project gets bigger this can be a real mess and names could be misleading and confusing. To solve this issue I have seen a lot of approaches.

Some companies prefix all their classes… like “class.MyClass.php” to clean up some mess on one level.

Some organize them in directories. But they all have to be added to include path with slows down an application or have to be changed into before usage. Code can become complicated and strange.

PHP introduced namespaces since version 5.3 altough i am not really sure about their functionalities yet.

However a standard that I have seen more and more often which I think got popular because of the zend framework is the following:

function __autoload($className){
    require_once  str_replace('_','/',$className).'.php';
}

This trivial autoloader already expresses the concept.

Class names are preceded by their path with underline as a delimiter.

For example the “Service” component holds apis for various service providers.

Zend/Service/Amazon.php holds the class Zend_Service_Amazon.

A more specialised API for Amaozn s3 can be found in Zend/Service/Amazon/S3.php where the class Zend_Service_Amazon_S3 lives.

I think this concept is very easy to maintain, very intuitive, quite common by now and is adaptable to most needs.

But how is it called. Does it have a name?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T05:58:42+00:00Added an answer on May 25, 2026 at 5:58 am

    Finally found the right answer. Its called PSR-0 and is a compliance guideline for autoloading:

    http://groups.google.com/group/php-standards/web/psr-0-final-proposal

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small (500kb) swing applet that displays very simple/limited set of small
I have found that my HTML is, to be honest, very clunky. Small, simple
I have a VS 2008 C++ project, with one very small and simple code
I am stuck in a very difficult condition. I have made some small projects
I am currently building a very small/simple web application in ASP.NET MVC with ADO.NET
Using pyUnit to do what is currently a very small and simple unit test
I'd like to play around with writing some very small, simple web-based games (checkers,
Sorry if this is a stupid noob question. I'm doing a very small project
For a small project I need to utilize a simple database with very light
Here is one very simple question(or at least at first sight).Let's say we have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.