过时雪碧

文章
5
资源
0
加入时间
2年10月17天

php 中使用Rabbitmq实现实现消息发送和接收

php 中使用Rabbitmq实现实现消息发送和接收1,建立一个send.php文件用来发送消息2,建立一个 receive.php 文件用来接收消息代码如下send.php<?php/*** 发送消息 */$exchangeName = 'demo';$routeKey = 'hello';$message = 'Hello World!';// 建立TCP连接$connection = new AMQPConnection([ 'host' =>

[Golang] cgo: C compiler “gcc“ not found

gcc not found2、压缩包解压之后得到一个 mingw64 文件夹。gcc程序就在bin目录下3、将其放到环境变量系统属性->高级->环境变量4、检查gcc是否安装成功

Unity下的UDP客户端前言代码资源其他

Unity下简洁有效的UDP客户端前言代码前言本来就想从网上找一个Unity的UDP客户端,百度上试了好多教程,问题百出,让人气不打一处来.就几行代码的事情,浪费时间.下面贴代码ip和port改成服务器的"connect"是连接时给服务器发送的"HeartBeat"是心跳包代码using System.Collections;using System.Collections.Generic;using UnityEngine;using System;us

centos7修改网卡名字的方法

很多同学在装完centos7,发现网卡接口名字变了, 不再是eth*或者em*了,而是ens*,但是这样统一维护起来就比较麻烦,那么怎么修改呢,请看下文: