💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## mapInto() 方法可以迭代集合,通过将值传递给构造函数来创建给定类的新实例: mapInto() 方法可以迭代集合,通过将值传递给构造函数来创建给定类的新实例: ``` class Currency { /** * Create a new currency instance. * * @param string $code * @return void */ function __construct(string $code) { $this->code = $code; } } $collection = collect(['USD', 'EUR', 'GBP']); $currencies = $collection->mapInto(Currency::class); $currencies->all(); // [Currency('USD'), Currency('EUR'), Currency('GBP')] ```