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