External Definitions
Posted: Fri Apr 25, 2008 12:32 pm
Code: Select all
/**
* @return
* @param _file filename including path to zip file
* @desc constructor, initialises class variables
*/
function ZipExtract($_file)
{ ....A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
/**
* @return
* @param _file filename including path to zip file
* @desc constructor, initialises class variables
*/
function ZipExtract($_file)
{ ....Those are just comments, but a well structured, and well documented one. I do not know what those are called, but I follow and use that style.Shendemiar wrote:What is the name for those definitions prior to the function/class so i could google for them... or if anyone could point me directly to some resource about them.Code: Select all
/** * @return * @param _file filename including path to zip file * @desc constructor, initialises class variables */ function ZipExtract($_file) { ....