Skip to content

ar-lab/php-daemon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

php-daemon

Start your Job by Daemon

Usage

Create Job

class MyJob extends Job
{
    public function processJob()
    {
        // your code here
    }
}

Start Daemon

$daemon = new Daemon();
$daemon->setJob(new MyJob());
$daemon->start();

About

Start your Job by Daemon

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages