mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
20 lines
469 B
PHP
20 lines
469 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
require_once('shell.php');
|
||
|
||
$mq = new taskmgr_connecter_rabbitmq();
|
||
|
||
$mq->load('autochk', $GLOBALS['__RABBITMQ_CONFIG']);
|
||
|
||
for($i=0;$i<10;$i++){
|
||
|
||
$data['logi_no'] = 'dly'. sprintf('%05d', $i);
|
||
$data['url'] = 'http://www.baidu.com/?rand=' . rand(1,10000);
|
||
$msg = json_encode($data);
|
||
$mq->publish($msg,'erp.task.autochk.*');
|
||
}
|