PHP复制代码
<?php
class His_data extends MY_Controller {
var $table = '2012ppt;
function __construct()
{
parent::__construct();
}
function index()
{
echo $this->$table;
}
}
?>
复制代码
结果:
A PHP Error was encounteredSeverity: Notice Message: Undefined variable: table Filename: controllers/his_data.php Line Number: 15
|