views:

186

answers:

3

i have seen a lot of coders choosing this filename convention:

file.class.php.

is this a standard of naming class files?

just curious. so i know if i should follow it for all class files in the future.

thanks

+6  A: 

There is no standard per se for naming class files, however file.class.php sends the message that it contains class files, opposed to file.php which may give the impression of a regular file.

My suggestion is to use one convention and be consistent with it.

Update:

A good point to note, as AJ, had stated, the *.php file extension is preferred over *.inc file extensions. Reason being that *.inc files are displayed on the client's browser as plain text and if you were to store any configuration files or private information (especially in relation to your database, yikes) it could potentially be accessed by anyone.

Anthony Forloney
It might be worth noting the significance of using the *.php extension - some groups use *.inc or other extensions which is unwise. Otherwise I fully agree.
AJ
@AJ, I had added an update, if you know anything else that would be useful to add, do not hesitate.
Anthony Forloney
+1  A: 

More common is to capitalise class files.

so class Blah would be saved as Blah.php

Bingy
+1  A: 

Actually this method of naming files came from developers who combines both procedural & OOPs in a same built. To differentiate procedural files and class files they did this. There is no standard convention. But I will suggest you to use filename.php and name the class as same as file name, just as Java convention. Keep only one class definition in a file.

@Derk: It can also be like this, there is no benefit of adding class. in file name ;)

 function __autoload ($class) {

      require_once $class . '.php';

  }

  $pizza = new pizza ();
Sriansri