class IndexAction extends Action {
public function index(){
$m = M('think_data');
if($m->create())
{
echo 'Connect success';
}else{
echo 'Connect fail';
throw new Exception('Connect error');
}
}
public function _empty($name){
$this->index();
}
}
?>
syntax error, unexpected T_PUBLIC
错误位置
FILE: D:\apacheServer\htdocs\ThinkPHP\Lib\Core\Model.class.php LINE: 839
为什么总是报这个错误,839行的错误是什么啊?谢谢!
最佳答案
