💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## combine方法:将一个数组作为键另一个数组作为值组合新数组 将一个集合的值作为「键」,再将另一个数组或者集合的值作为「值」合并成一个集合。 ~~~ $collection = collect(['name', 'age']); $combined = $collection->combine(['George', 29]); $combined->all(); // ['name' => 'George', 'age' => 29] ~~~