tobya/every

Execute a closure every count times the function is called

v0.4 2024-02-07 08:12 UTC

This package is auto-updated.

Last update: 2024-06-07 08:59:45 UTC


README

A very simple Laravel package that will execute a closure every x times it is called.

Installation

Install with composer

composer require tobya/every

Usage

use in a loop to execute every x times

 foreach( $BigList as $item){
    if (DoACheck()){
      DoSomethign();
    }
    \Tobya\Every\Every::Every(20, function(){
        echo 'checked 20';
      });
  }

if you just want to echo you can simply use the echo function

 foreach( $BigList as $item){
    if (DoACheck()){
      DoSomethign();
    }
    \Tobya\Every\Every::Echo(20, 'checked 20');
      
  }