我想通过在 laravel 中定义 where 条件来从 CSV 文件中获取数据我已经有了一个函数,这将正确获取数组 $customerArr 上的数据但我想使用 where 条件所有数据都来自 city_master.csv文件标题被定义为城市代码。意味着我想要匹配来自 CSV 文件而不是来自数据库的数据。代码在这里——
$file = public_path('file/city_master.csv');
$customerArr = $this->csvToArray($file);
for ($i = 0; $i < count($customerArr); $i++)
{
//dd($customerArr );
$userreg = $customerArr->where('City_Code', 'like', '%'.$query.'%')->get();
}
return 'not in array';
HUH函数
慕森卡