在本地主机上一切都工作得很好,但是当迁移到 godaddy live 服务器(cpanel)时,我在刀片视图上不断收到此错误(未定义的偏移量:0)
我已经使用运行 PHP 7.2.12 的 XAMPP 在本地主机上测试了该应用程序,它工作得很好,但现在我将它移至运行 PHP 7.3 的 godaddy cpanel,它一直给我这个错误
//这是我的路线 路线::get('/conversations', 'DoctorsController@Conversations');
//这是我的控制器 公共函数对话(请求$请求){
//authenticate user
if($request->us == 'guest'){
return redirect()->intended('login');
}else{
$unread=DB::table('messaging')
->where([
['Reciever', Auth::user()->id],
['ReadStatus', '=', '']
])
->get();
$pending=$unread->count();
//retrieve previous chat;
$conversations=DB::table('messaging')
->where('Sender', Auth::user()->id)
->orWhere('Reciever', Auth::user()->id)
->groupBy('Sender')
->orderBy('ReadStatus', 'asc')
->get();
//retrieve profile of users in the previous chat
$profiles = array();
$read_status = array();
foreach($conversations as $conversation){
if($conversation->Sender == Auth::user()->id){
//check user role to know which database to query
$userRole=DB::table('role_user')
->where('user_id', $conversation->Reciever)
->get();
if($userRole[0]->role_id === 2){
#retrieve the sender details from doctors table
$profile=DB::table('doctors')
->where('doctor_id', $conversation->Reciever)
->get();
}else{
//retrieve the sender details from users table
$profile=DB::table('profiles')
->where('user_id', $conversation->Reciever)
->get();
}
if(in_array($profile, $profiles)){
}else{
array_push($profiles, $profile);
}
//retrieve the reciever details
}else if($conversation->Reciever == Auth::user()->id){
//check user role to know which database to query
$userRole=DB::table('role_user')
->where('user_id', $conversation->Sender)
->get();
if($userRole[0]->role_id === 2){
$profile=DB::table('doctors')
->where('doctor_id', $conversation->Sender)
->get();
}else{
$profile=DB::table('profiles')
->where('user_id', $conversation->Sender)
->get();
}
//retrive unread chat;
$unreadconvers=DB::table('messaging')
->select('ReadStatus')
->where([
['Reciever', Auth::user()->id],
['Sender', $conversation->Sender],
['ReadStatus', '=', '']
])
->get();
if(in_array($profile, $profiles)){
}else{
$profile['unreads'] = $unreadconvers->count();
array_push($profiles, $profile);
//array_push($read_status, $unreadconvers->count());
}
}
$i++;
}
return view('conversations')->with(['profile'=>$profiles, 'pending'=>$pending, 'unreads'=>$read_status]);
//return to the conversation blade
}
}
//这是我的 Blade 模板 @foreach($profile 为 $profile)
<div class="col-md-4 element-animate">
<div class="media d-block media-custom text-center">
<img src= "{{ URL::to(isset($profile[0]->image) ? $profile[0]->image : '../img/user.png') }}" alt="Image Placeholder" class="img-fluid img-fluid-doctors">
<div class="media-body">
<a href="{{ isset($profile[0]->doctor_id) ? url('/chat-doctor?db='.$profile[0]->doctor_id) : url('/chat-doctor?us='.$profile[0]->user_id) }}" class="envelop"><i class="far fa-envelope"></i><span class="unread">{{ isset($profile['unreads']) ? $profile['unreads'] : 0 }}</span>
<h3 class="mt-0 text-black">{{ $profile[0]->name }}</h3>
</a>
</div>
</div>
</div>
@endforeach
在控制器处,此代码预计会从数据库中检索链接到登录用户发送或接收的所有消息,使用数组存储它们,并在循环遍历每个数组的刀片模板上显示它们。
目前这就是它在本地主机上所做的事情,但在实时服务器上我收到此错误消息未定义的偏移量:0(查看:/resources/views/conversations.blade.php)
您正在覆盖 foreach 循环中的变量,因此在第二次迭代中,它在配置文件对象而不是原始数组中循环。
将控制器更改为:
'profiles' => $profiles,
并将 foreach 更改为循环
$profiles
:
@foreach ($profiles as $profile)
并将您的
$profile[0]
替换为 $profile
。
我已经找到了这个问题的解决方案,我在有这段代码的地方使用 === 而不是 ==
if($userRole[0]->role_id === 2)
我现在将这行代码更改为
if($userRole[0]->role_id == 2)
现在工作得很好。
感谢您的回复,Chin Leung。