PHP 웹 사이트의 문서를 좋아하므로 인라인 주석 및 PHPDoc 구문을 사용하는 것과 비슷한 것을 사용합니다. 아래 예를 참조하십시오.
/*
* Finds all the locations where you have access to for this client and returns them in an array .
* @author Radu
* @version 1.0
* @param int $id ( The id of the client for which you're requesting access. )
* @param object $db ( A resource of type Mysql, representing a connection to mysql database, if not supplied the function will connect itself. )
* @return array ( Returns array with id's of locations that you are allowed to see, an empty array if you do not have acces to any locations or returns FALSE and triggers a Warning if any error occuread )
* @use array allowed_locations ( $id [, $db] )
*/
function allowed_locations($id, $db=NULL){ ... }
그리고 @Larry Coleman이 말했듯이 인라인 주석은 왜 코드를 작성했는지 알려줍니다.
$funcResult = SomeFunction();
if(is_array($funcResult))
{ //Beacause SomeFunction() could return NULL, and count(NULL) = 1
$c = count($funcResult);
} else {
$c = 0;
}
if($c == 1)
{
...
}else
{
...
}