你知道Laravel Collection的实际使用场景有哪些吗?

下面由laravel教程栏目给大家介绍laravel collection的实际使用场景,希望对需要的朋友有所帮助!

laravel

      1,    'user_id'       =>      1,    'number'        =>      '13908080808',    'status'        =>      0,    'fee'           =>      10,    'discount'      =>      44,    'order_products'=> [        ['order_id'=>1,'product_id'=>1,'param'=>'6寸','price'=>555.00,'product'=>['id'=>1,'name'=>'蛋糕名称','images'=>[]]],        ['order_id'=>1,'product_id'=>1,'param'=>'7寸','price'=>333.00,'product'=>['id'=>1,'name'=>'蛋糕名称','images'=>[]]],    ],]];

登录后复制

$sum = 0;foreach ($orders as $order) {    foreach ($order['order_products'] as $item) {        $sum += $item['price'];    }}echo $sum;

登录后复制

$sum = collect($orders)->map(function($order){    return $order['order_products'];})->flatten(1)->map(function($order){    return $order['price'];})->sum();echo $sum;

登录后复制

$sum = collect($orders)->flatMap(function($order){    return $order['order_products'];})->pluck('price')->sum();echo $sum;

登录后复制

$sum = collect($orders)->flatMap(function($order){    return $order['order_products'];})->sum('price');

登录后复制

// 带格式化数组$gates = [    'BaiYun_A_A17',    'BeiJing_J7',    'ShuangLiu_K203',    'HongQiao_A157',    'A2',    'BaiYun_B_B230'];// 新数组$boards = [    'A17',    'J7',    'K203',    'A157',    'A2',    'B230'];

登录后复制

$res = [];foreach($gates as $key => $gate) {    if(strpos($gate, '_') === false) {        $res[$key] = $gate;    }else{        $offset = strrpos($gate, '_') + 1;        $res[$key] = mb_substr($gate , $offset);    }}var_dump($res);

登录后复制

$res = collect($gates)->map(function($gate) {    $parts = explode('_', $gate);    return end($parts);});

登录后复制

$res = collect($gates)->map(function($gate) {    return collect(explode('_', $gate))->last();})->toArray();

登录后复制

$opts = [        'http' => [                'method' => 'GET',                'header' => [                        'User-Agent: PHP'                ]        ]];$context = stream_context_create($opts);$events = json_decode(file_get_contents('http://api.github.com/users/0xAiKang/events', false, $context), true);

登录后复制

$eventTypes = []; // 事件类型$score = 0; // 总得分foreach ($events as $event) {    $eventTypes[] = $event['type'];}foreach($eventTypes as $eventType) {    switch ($eventType) {        case 'PushEvent':        $score += 5;        break;        case 'CreateEvent':        $score += 4;        break;        case 'IssueEvent':        $score += 3;        break;        case 'IssueCommentEvent':        $score += 2;        break;        default:        $score += 1;        break;    }}

登录后复制

$score = $events->pluck('type')->map(function($eventType) {   switch ($eventType) {      case 'PushEvent':      return 5;      case 'CreateEvent':      return 4;      case 'IssueEvent':      return 3;      case 'IssueCommentEvent':      return 2;      default:      return 1;  }})->sum();

登录后复制

$score = $events->pluck('type')->map(function($eventType) {   return collect([       'PushEvent'=> 5,       'CreateEvent'=> 4,       'IssueEvent'=> 3,       'IssueCommentEvent'=> 2   ])->get($eventType, 1); // 如果不存在则默认等于1})->sum();

登录后复制

class GithubScore {    private $events;    private function __construct($events){        $this->events = $events;    }    public static function score($events) {        return (new static($events))->scoreEvents();    }    private function scoreEvents() {        return $this->events->pluck('type')->map(function($eventType){            return $this->lookupEventScore($eventType, 1);        })->sum();    }    public function lookupEventScore($eventType, $default_value) {       return collect([           'PushEvent'=> 5,           'CreateEvent'=> 4,           'IssueEvent'=> 3,           'IssueCommentEvent'=> 2       ])->get($eventType, $default_value); // 如果不存在则默认等于1    }}var_dump(GithubScore::score($events));

登录后复制

$messages = [    'Should be working now for all Providers.',    'If you see one where spaces are in the title let me know.',    'But there should not have blank in the key of config or .env file.'];// 格式化之后的结果- Should be working now for all Providers. \n- If you see one where spaces are in the title let me know. \n- But there should not have blank in the key of config or .env file.

登录后复制

$comment = '- ' . array_shift($messages);foreach ($messages as $message) {    $comment .= "\n -  ${message}";}var_dump($comment);

登录后复制

$comment = collect($messages)->map(function($message){    return '- ' . $message;})->implode("\n");var_dump($comment);

登录后复制

$lastYear = [    6345.75,    9839.45,    7134.60,    9479.50,    9928.0,    8652.00,    7658.40,    10245.40,    7889.40,    3892.40,    3638.40,    2339.40];$thisYear = [    6145.75,    6895.00,    3434.00,    9349350,    9478.60,    7652.80,    4758.40,    10945.40,    3689.40,    8992.40,    7588.40,    2239.40];

登录后复制

$profit = [];foreach($thisYear as $key => $monthly){    $profit[$key] = $monthly - $lastYear[$key];}var_dump($profit);

登录后复制

$profit = collect($thisYear)->zip($lastYear)->map(function($monthly){    return $monthly->first() - $monthly->last();});

登录后复制

$employees = [    [        'name' => 'example',        'email' => 'example@exmaple.com',        'company' => 'example Inc.'    ],    [        'name' => 'Lucy',        'email' => 'lucy@example.com',        'company' => 'ibm Inc.'    ],    [        'name' => 'Taylor',        'email' => 'toylor@laravel.com',        'company'=>'Laravel Inc.'    ]];// 格式化之后的结果$lookup = [    'example' => 'example@example.com',    'Lucy' => ‘lucy@example.com’,    'Taylor'=> 'toylor@laravel.com'];

登录后复制

$emails = [];foreach ($employees as $key => $value) {    $emails[$value['name']] = $value['email'];}

登录后复制

$emails = collect($employees)->reduce(function($emailLookup, $employee){    $emailLookup[$employee['name']] = $employee['email'];    return $emailLookup;},[]);

登录后复制

$emails = collect($employees)->pluck('name', 'email');

登录后复制

以上就是你知道Laravel Collection的实际使用场景有哪些吗?的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3159920.html

(0)
上一篇 2025年3月30日 10:39:18
下一篇 2025年2月27日 19:58:14

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • 五步搞定Laravel Migrations的使用

    本文由laravel教程栏目给大家介绍,主要内容是“laravel如何使用migrations”,希望对需要的朋友有所帮助! Laravel:使用Migrations 1、首先利用artisan创建一个可迁移的数据表模板,该命令运行后会在d…

    编程技术 2025年3月30日
    100
  • 聊聊PHP中与JSON相关的函数

     php中要怎么操作json?本篇文章带大家深入学习一下php中与json相关的函数,介绍一下使用这些函数需要注意的一些地方,希望对大家有所帮助! 在我们当年刚刚上班的那个年代,还全是 XML 的天下,但现在 JSON 数据格式已经是各种应…

    2025年3月30日
    100
  • laravel中dd属于函数吗

    在laravel中,dd()属于laravel辅助函数;dd函数用于输出给定的值并结束脚本运行,可以打印laravel中的所有变量,语法为“dd($value1,$value2…)”。 本文操作环境:Windows10系统、La…

    2025年3月30日
    100
  • 看看最新发布的Laravel8.78有哪些新功能!

    下面由laravel教程栏目给大家介绍最新发布的laravel 8.78有哪些新功能 ,希望对大家有所帮助! Laravel 团队发布了 8.78,能够向默认密码验证添加自定义规则、mergeIfMissing() 请求方法、断言测试中的批…

    编程技术 2025年3月30日
    100
  • 记录:php rsa加密处理失败的解决方法

    关于php rsa加密处理 最近刚好需要跟一个第三方系统对接几个接口,对方要求 post 数据需要 rsa 加密,于是百度搜了一下 php 关于 rsa 加密的处理,然后大家可能就会跟我一样搜出以下示例:   /**          * …

    编程技术 2025年3月30日
    100
  • 完全掌握AWS S3在Laravel中的使用

    本篇文章给大家带来了关于在laravel中使用aws s3的相关知识,aws s3为我们提供了存储服务器文件的地方,在云中存储文件不需要占用太多的磁盘空间,希望对大家有帮助。 AWS S3 为我们提供了存储服务器文件的地方。 这样做有的好处…

    2025年3月30日
    100
  • laravel常用集合方法有哪些

    laravel常用集合方法有:filter()、search()、chunk()、dump()、map()、zip()、whereNotIn()、max()、pluck()、each()、tap()、pipe()、contains()等等。…

    2025年3月30日
    100
  • laravel支持php8吗

    laravel支持php8。高版本的Laravel6、Laravel7或Laravel8是支持php8的,只需要确保Laravel提供的任何第一方软件包(Dusk等)是最新版本的,并在“composer.json”文件中更新相关依赖项即可。…

    2025年3月30日
    100
  • 详细了解Laravel Swagger的使用

    本篇文章给大家带来了关于laravel的相关知识,其中主要介绍了swagger使用的相关问题,下面一起来看一看基于laravel 生成swagger 为例子,希望对大家有帮助。 【相关推荐:laravel】 swagger太辣鸡了? 本教程…

    2025年3月30日 编程技术
    100
  • 什么是PHPUnit?在PHP项目中怎么使用?

    什么是phpunit?在php项目中怎么使用?下面本篇文章给大家介绍一下在php项目中使用phpunit框架进行单元测试的方法,希望对大家有所帮助! 镜像地址 : PHPUnit简介以及如何在项目中使用 – 多厘(https:/…

    2025年3月30日 编程技术
    100

发表回复

登录后才能评论