php-resque/demo/queue.php
jingyu liu 8ccc31632a repair PHP Notice, on line 17
when run <php queue.php PHP_Job>, it has a PHP Notice.
I think it's right command <php queue.php default PHP_Job>.
2013-12-06 14:14:57 +08:00

23 lines
483 B
PHP

<?php
if(empty($argv[1])) {
die('Specify the name of a job to add. e.g, php queue.php PHP_Job');
}
require __DIR__ . '/init.php';
date_default_timezone_set('GMT');
Resque::setBackend('127.0.0.1:6379');
$args = array(
'time' => time(),
'array' => array(
'test' => 'test',
),
);
if (empty($argv[2])) {
$jobId = Resque::enqueue('default', $argv[1], $args, true);
} else {
$jobId = Resque::enqueue($argv[1], $argv[2], $args, true);
}
echo "Queued job ".$jobId."\n\n";