我在课堂上遇到错误'__construct,说:
Notice: Undefined variable: DEFAULT_TOP_PAGE_ID in classes.php on line XY.
这是代码:
// consts.php
<?php
$DEFAULT_TOP_PAGE_ID = "top_";
...
// classes.php
<?php
error_reporting (E_ALL);
require_once("consts.php");
class cSiteManager {
public $top_page_ID;
public function __construct() {
$this->top_page_ID = $DEFAULT_TOP_PAGE_ID;
...
谁能告诉我问题出在哪里?