gpt4 book ai didi

php - 语法错误,Laravel 中意外的 '->' (T_OBJECT_OPERATOR)

转载 作者:行者123 更新时间:2023-11-29 04:41:00 24 4
gpt4 key购买 nike

在 Laravel 4.2 中,我收到以下错误:

Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_PARSE)
syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ',' or ')'

这个错误发生在提供静态函数getRecommendations的Recommendation类中

class Recommendation extends Eloquent {

/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'recommendations';

public static function getRecommendations($userID) {
$recommendations = DB::table('recommendations')
->join('sites', function($join) use ($user->id) {
$join->on('sites.id', '=', 'recommendations.site_id');
$join->on('sites.owner', '=', DB::raw($userID));
})
->select('recommendations.id', 'recommendations.title', 'recommendations.body', 'recommendations.site_id', 'site.address')
->get();
return $recommendations;
}

}

在这条线上

->join('sites', function($join) use ($user->id) {

我不明白,查询有什么问题..

Recommendations 表的结构是

id  int(10) unsigned Autoincrement   
title varchar(255)
body text
site_id int(10) unsigned
created_at timestamp [0000-00-00 00:00:00]
updated_at timestamp [0000-00-00 00:00:00]

站点表是

id  int(10) unsigned Автоматическое приращение   
sitename varchar(255)
address varchar(64)
owner int(10) unsigned
created_at timestamp [0000-00-00 00:00:00]
updated_at timestamp [0000-00-00 00:00:00]

最佳答案

函数 getRecommendations() 中没有可用的变量 $user,函数参数 $userID 未在函数内部使用,并且匿名函数使用 $userID

唯一的结论是该行应该是:

->join('sites', function($join) use ($userID) {

关于php - 语法错误,Laravel 中意外的 '->' (T_OBJECT_OPERATOR),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28434971/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com