2009-02-05 61 views
5

我想知道如何在phpdoc註釋中跳過phpdoc註釋。如何在phpdoc評論中退出phpdoc評論?

例如,我怎麼會寫這樣的:

/** 
* Some documentation... 
* 
* <code> 
* /** 
* * Example example phpdoc. 
* */ 
* </code> 
*/ 

顯然上面的例子將無法正常工作。

我試着用&#X2A替換星號的;但是它只是很好地打印「&#X2A;」 ...

回答

7

根據DocBlock Description details,您可以從1.2.0rc1開始編寫{@ *}來寫入* /。

例如:

/** 
* Simple DocBlock with a code example containing a docblock 
* 
* <code> 
* /** 
* * My sample DocBlock in code 
* {@*} 
* </code> 
*/ 
0

您需要使用@example。標籤</code>

@example /path/to/example.php How to use this function 
@example anotherexample.inc This example is in the "examples" subdirectory 

後 添加以下行你可以找到更多信息here。 因此,您顯然需要在單獨的文件中包含示例代碼。