我只是在这样做时出错,我不明白为什么。
class Budget_model extends CI_Model
{
// Predefine global class vars
private $current_date = date('j'); // Current day date
private $current_month = date('n'); // Current month date
private $current_year = date('Y'); // Current year
}
这只会给我这个错误,
解析错误:第 7 行 /Applications/MAMP/htdocs/therace/application/models/budget_model.php 中的语法错误、意外的 '('、期待 ',' 或 ';'
但为什么?我该如何解决这个问题?