10 Code Examples
/*
* @(#)Cngift.php 1.82 03/06/25
*
* Sample document written by Hua Shitou
> *
*/
require( “db.php” );
* Demonstration class
*
* @version 1.82 03.06.25
*/
class Blah extends SomeClass {
/* The runtime comments for this class are written here */
/**Comments about variables are written here*/
/**
*/
static string classVar2;
/**Documentation comments for variables*/
/**Documentation comments for variables*/
/**
*/
function Blah() {
// ...execute here...
}
/**
*/
function doSomething() {
// ...execute here...
}
/**
* Multi-line comments
*/
public void doSomethingElse(Object someParam) {
// ...execute here...
}
}
http://www.bkjia.com/PHPjc/532576.html