摘要:
title: PHP使用RabbitMQ实例 date: 2021-03-22 17:37:29 tags: php categories: php 消费者代码consumer.php <?php /** * Created by PhpStorm. * User: wangyii.cn * Tim 阅读全文
posted @ 2023-03-14 16:49
梦一水知音~
阅读(98)
评论(0)
推荐(0)
|
摘要:
title: PHP使用RabbitMQ实例 date: 2021-03-22 17:37:29 tags: php categories: php 消费者代码consumer.php <?php /** * Created by PhpStorm. * User: wangyii.cn * Tim 阅读全文
posted @ 2023-03-14 16:49
梦一水知音~
阅读(98)
评论(0)
推荐(0)
摘要:
1.运行页面 <?php require_once(__DIR__."/timer.php"); require_once(__DIR__."/worker.php"); Timer::dellAll(); Timer::add( 1, array('DoJob','job'), array(),t 阅读全文
posted @ 2023-03-14 16:41
梦一水知音~
阅读(74)
评论(0)
推荐(0)
摘要:
二分查找法 function binarySearch($arr, $val, $hight, $low = 0) { $i = 0; while ($low <= $hight) { $i++; $mid = ceil($low + ($hight - $low) / 2); if ($arr[$ 阅读全文
posted @ 2023-03-14 16:09
梦一水知音~
阅读(19)
评论(0)
推荐(0)
|