123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- declare(strict_types=0);
- define('MOBILE_SERVER',true);
- define('USE_COROUTINE',true);
- define('SUPPORT_PTHREAD',false);
- define('APP_ID', 'sender');
- define('BASE_ROOT_PATH',str_replace('/server','',dirname(__FILE__)));
- define('BASE_PATH',BASE_ROOT_PATH . '/server');
- require_once(BASE_ROOT_PATH . '/global.php');
- require_once(BASE_ROOT_PATH . '/fooder.php');
- Log::record(__FILE__ . " 1",Log::DEBUG);
- require_once(BASE_CORE_PATH . '/framework/function/http.php');
- require_once(BASE_HELPER_PATH . '/refill_proxy.php');
- Log::record(__FILE__ . " 2",Log::DEBUG);
- Co::set(['hook_flags' => SWOOLE_HOOK_NATIVE_CURL|SWOOLE_HOOK_SLEEP]);
- Log::record(__FILE__ . " 3",Log::DEBUG);
- class RefillSender
- {
- const co_routines = 1000;
- const co_orders = 1000;
- public function send($index)
- {
- $count = self::co_orders;
- $time = time() * 1000 + $index;
- for ($i = 0; $i < $count; $i++)
- {
- Log::record(__FUNCTION__ . " index={$i}",Log::DEBUG);
- $this->push_order(1092, $time, $i);
- }
- }
- public function sendex()
- {
- $count = self::co_routines;
- $pThis = $this;
- for ($i = 0;$i < $count; $i++)
- {
- Log::record(__FUNCTION__ . " index={$i}",Log::DEBUG);
- go(function () use ($pThis,$i) {
- $pThis->send($i);
- });
- }
- }
- private function push_order($mchid,$time,$index)
- {
- $notify_url = "https://test.xyzshops.cn/mobile/callback/bridge_test.php";
- $params = [ 'mchid' => $mchid,
- 'amount' => 30,
- 'order_sn' => "{$time}" . sprintf("%'010d",$index),
- 'cardno' => '13911129867',
- "act" => "refill",
- "op" => "add",
- 'notifyurl' => $notify_url
- ];
- $proxy = new refill_proxy("210fe406954220f56085997d6a4c5b80");
- $resp = $proxy->send("https://test.xyzshops.cn/mobile/index.php", $params);
- Log::record("resp={$resp}",Log::DEBUG);
- }
- }
- //docker run busybox nslookup test.xyzshops.cn
- //$sender = new RefillSender();
- //$sender->send(1);
- Log::record("send message start",Log::DEBUG);
- go(function () {
- $sender = new RefillSender();
- $sender->sendex();
- });
- Log::record("send message end",Log::DEBUG);
|