Takže je to slovo za tím //--- xxx komentář? Jak bude teda výsledný kód ?
1 možnost:
include( $path . "cp.inc.php" );
class CIndexPage extends CSystem {
}
function _main() {
$obj = new CIndexPage();
$obj->setup();
$obj->run();
nebo2 možnost:
include( $path . "cp.inc.php" );
// CIndexPage
class CIndexPage extends CSystem {
}
// _main
function _main() {
$obj = new CIndexPage();
$obj->setup();
$obj->run();