正确复制代码 代码如下:$sql = "SELECT `user`.`name` FROM `user` WHERE `id` = '$id' LIMIT 1"; 错误复制代码 代码如下:$sql = "select name.user from name where id = $id "; 第3章 注释规则
注释名称 文件头注释 注释示范:PHP 代码:复制代码 代码如下: /** * All abstract representations of inline tags are in this file * @package phpDocumentor * @subpackage InlineTags * @since separate file since version 1.2 * @version $Id $ */ 备注 1)文件头注释需要指明所属的包和子包; 2)在@version中加上$ID,以方便使用CVS管理文件。
3.2.3 类注释示例 注释名称 类注释 注释示范: PHP 代码:复制代码 代码如下: /** * Use this element to represent an {@}inline tag} like {@}link} * @see parserStringWithInlineTags * @package phpDocumentor * @subpackage InlineTags * @author Greg Beaver cellog@users.sourceforge.net * @since 1.0rc1 * @version $Revision: 1.21.2.6 $ * @tutorial inlinetags.pkg */
3.2.4 类属性注释示例 注释名称 类属性注释 注释示范: PHP 代码:复制代码 代码如下: /** * Element type * * Type is used by many functions to skip the hassle of * * code * if get_class($blah) == 'parserBlah' * /code * always "inlinetag" * @var string */ var $type = 'inlinetag'; 3.2.5 函数/类方法注释示例 注释名称 函数/类方法注释 注释示范: PHP 代码:复制代码 代码如下: /** * @return string always '' * calculate the short description of a DocBlock * @see parserStringWithInlineTags::getString() * @see parserStringWithInlineTags::trimmedStrlen() */ function getString() { return ''; } PHP教程