语法错误意外T_CONSTANT_ENCAPSED_STRING

Jes*_*zie 0 php syntax-error

syntax error, unexpected T_CONSTANT_ENCAPSED_STRING 在这行上得到以下错误$this->email->subject($this->core_model->companyDetails()->coreCompanyName 'User Registration Confirmation');我犯了错误'' and ""吗?我也将名称作为$ data包含在主题而不是模型调用中?

Thi*_*ter 13

你可能忘记了一个逗号:试试这个:

$this->email->subject($this->core_model->companyDetails()->coreCompanyName, 'User Registration Confirmation');
Run Code Online (Sandbox Code Playgroud)

代替

$this->email->subject($this->core_model->companyDetails()->coreCompanyName 'User Registration Confirmation');
Run Code Online (Sandbox Code Playgroud)