PHP code example of iglocska / php-resque-ex
1. Go to this page and download the library: Download iglocska/php-resque-ex library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iglocska / php-resque-ex example snippets
class Resque_Job_Creator
{
public static function createJob($className, $args) {
// $className is you job class name, the second arguments when enqueuing a job
// $args are the arguments passed to your jobs
// Instanciate your class, and return the instance
return new $className();
}
}