View Single Post
Old 07-28-2008, 11:23 AM   #3 (permalink)
Ross
The Contributor
 
Ross's Avatar
 
Join Date: Jan 2008
Location: England, UK
Posts: 83
Thanks: 3
Ross is on a distinguished road
Default

Interesting tutorial, personally I use the phpdoc comments at the start of a file e.g.

PHP Code:
/**
 * Sample file
 * @package Sample
 * @version 1.0
 * @author Ross Masters <ross@php.net> (yeah, right)
 */ 
Interfaces are useful if there is scope to write a future addition to your abstract - in this case a PostgreSQL plugin for the database system - and don't see why more people don't use them.

I'll be interested to see your plugins tutorial as I'm struggling myself with a similar project.
Ross is offline  
Reply With Quote