解析错误:语法错误,意外'' aws_account.aws_account_id''项目中的(T_CONSTANT_ENCAPSED_STRING)

时间:2015-04-15 11:33:09

标签: php mysql laravel-4

我遇到了以下错误,但我看不出有什么问题:

  

解析错误:第11行的C:\ xampp \ htdocs \ laravel \ awsconfig \ app \ controllers \ CRUDController.php中的语法错误,意外的''aws_account.aws_account_id''(T_CONSTANT_ENCAPSED_STRING)

我的连接语句中抛出错误:

$query = DB::table('ec2_instance')->join('aws_account', 'aws_account.id', '=', 'ec2_instance.id')->select('ec2_instance.instance_id', 'ec2_instance.public_dns_name', 'ec2_instance.key_name','ec2_instance.instance_type','ec2_instance.launch_time',‌​'aws_account.aws_account_id')->get();

1 个答案:

答案 0 :(得分:3)

你在最后,'之间有一些垃圾字符:

enter image description here