php-doc notes.txt 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. property levels:
  2. - page
  3. - class
  4. - method
  5. - property
  6. - function
  7. - variable
  8. - define
  9. defined property types:
  10. - 'bool', 'int', 'float', 'string', 'mixed', 'object', 'resource', 'array'
  11. additional PHP property types / aliases:
  12. - 'res' (alias of 'resource')
  13. - 'boolean' (alias of 'bool')
  14. - 'integer' (alias of 'int')
  15. - 'double' (alias of 'float)
  16. - 'number' (alternative to 'int', 'float' or 'double')
  17. - 'callback' (e.g. array($object|$class, $method) or 'function-name')
  18. defined tags:
  19. @access {private|public} : used on classes to make them private/public in documentation
  20. @abstract : PHP4 equivalent of the abstract keyword for classes
  21. @author {name} <{email}> : indicates who the author of a class is
  22. @category : used at "page" level (e.g. file) - organizes packages into categories
  23. @copyright {statement} : associates a copyright statement with any taggable element
  24. @deprecated {statement} : defines a short statement explaining why a document was deprecated (works everywhere except at page-level)
  25. @example {path} : defines a path to an example script (relative paths are allowed)
  26. @final : PHP4 equivalent of the final keyword for classes
  27. @filesource : similar to @example, but uses the path of the current file - used at page-level
  28. @global {type} {$name} : defines a global variable
  29. @global {type} {description} : defines the use of a global variable
  30. @ignore : suppresses documentation of the element it's applied to
  31. @internal {text} : declares internal documentation (excluded from public version of documentation)
  32. @license {url} {title} : declares a link to a license agreement
  33. @link {url} {text} : any url (including http, mailto, ftp, etc.) and optional description
  34. @method {type} {description} : defines a magic/virtual method
  35. @name {$varname} : used in conjunction with @global to "rename" a global variable
  36. @package {name} : associates a file or class with a package-name
  37. @param {type} {$name} {description} : describes a function-parameter's type and description
  38. @param {type1|type2} {$name} {description} : defines a function accepting multiple types of arguments
  39. @property {type} {$name} {description} : defines a magic/virtual property's type, name and description
  40. @property-read {type} {$name} {description} : same for read-only properties
  41. @property-write {type} {$name} {description} : same for write-only properties
  42. @return {type} {description} : defines the type and description of a function or method's return-value
  43. @return {type1|type2} {description} : for mixed return types
  44. @see {element} : adds internal documentation links, e.g. "path/file.php", "class::methodname()", "class::$varname", etc.
  45. @since {description} : adds historical version information - typically includes a version number
  46. @static : marks a method or property as static - PHP4 equivalent to the static keyword in PHP5
  47. @staticvar {type} {$name} : documents the use of a static variable in a method or function
  48. @subpackage {name} : used together with @package to define a sub-package name
  49. @todo {text} : defines a todo-list item for the programmer
  50. @tutorial package/subpackage/tutorialname.ext#section.subsection description : defines a link to a tutorial
  51. @uses {element} {description} : similar to @see, but adds a reverse @usedby tag to the destination element
  52. @var {type} {description} : used on properties to declare the type and description
  53. important tags for run-time reflection:
  54. @method {type} {func(type arg, type arg, ...)} {description} : defines a magic/virtual method
  55. @param {type} {$name} {description} : defines a method or function parameter's type
  56. @param {type1|type2} {$name} {description} : defines a method or function parameter's type as mixed
  57. @property {type} {$name} {description} : defines a magic/virtual property and it's type
  58. @property-read {type} {$name} {description} : defines a magic/virtual property, it's type and visibility
  59. @property-write {type} {$name} {description} : defines a magic/virtual property, it's type and visibility
  60. @return {type} {description} : defines the return-type of a function or method
  61. @return {type1|type2} {description} : defines the return-type of a function or method as mixed
  62. @var {type} {description} : defines property types
  63. other potentially useful tags for run-time reflection:
  64. @author : for admin/about screens
  65. @category : for admin/about screens
  66. @copyright : for admin/about screens
  67. @license : for admin/about screens
  68. @package : for admin/about screens
  69. @subpackage : for admin/about screens
  70. @uses : possible used in autoloaders, etc.
  71. useless tags:
  72. @access : outdated
  73. @abstract : outdated
  74. @deprecated : not relevant at run-time
  75. @example : not relevant at run-time
  76. @final : outdated
  77. @filesource : not relevant at run-time
  78. @global : not relevant at run-time
  79. @ignore : documentation only
  80. @internal : documentation only
  81. @link : documentation only
  82. @name : documentation only
  83. @see : documentation only
  84. @since : documentation only
  85. @static : outdated
  86. @staticvar : documentation only
  87. @todo : documentation only
  88. @tutorial : documentation only
  89. tags that must be inherited by subclasses:
  90. @author
  91. @version
  92. @copyright
  93. @package
  94. @subpackage
  95. (short description)
  96. (long description)