mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
23 lines
510 B
PHP
23 lines
510 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$domain = $argv[1];
|
||
$order_id = $argv[2];
|
||
$host_id = $argv[3];
|
||
|
||
if (empty($domain) || empty($order_id) || empty($host_id)) {
|
||
die('No Params');
|
||
}
|
||
|
||
set_time_limit(0);
|
||
|
||
//require_once(dirname(__FILE__) . '/../../lib/init.php');
|
||
require_once(dirname(__FILE__) . '/../../../../script/lib/init.php');
|
||
|
||
cachemgr::init(false);
|
||
|
||
kernel::single('ome_crontab_script_check')->exec_batch();
|