摘要: 1、accept.php消费者代码需要在命令行执行 2、'username'=>'asdf','password'=>'123456' 改成自己的帐号和密码 RabbitMQCommand.php操作类代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 阅读全文
posted @ 2019-07-31 17:54 猿来你也在这里呀 阅读(194) 评论(0) 推荐(0) 编辑
摘要: server { listen 7569 default_server; #listen [::]:80 default_server ipv6only=on; server_name www.linktest.com; index index.html index.htm index.php; r 阅读全文
posted @ 2019-07-31 17:27 猿来你也在这里呀 阅读(507) 评论(0) 推荐(0) 编辑
摘要: <?php/** * Simple JSON-RPC interface. */ namespace org;class JosnRpcClient{ protected $host; protected $port; protected $version; protected $debug; pr 阅读全文
posted @ 2019-07-31 16:50 猿来你也在这里呀 阅读(239) 评论(0) 推荐(0) 编辑
摘要: <?php/** * Simple JSON-RPC interface. */ namespace org;class JsonRpc{ protected $host, $port, $version; protected $id = 0; function __construct($host, 阅读全文
posted @ 2019-07-31 16:47 猿来你也在这里呀 阅读(592) 评论(0) 推荐(0) 编辑
摘要: <?phpnamespace page;// + // | ThinkPHP [ WE CAN DO IT JUST THINK ] // + // | Copyright (c) 2006~2017 http://thinkphp.cn All rights reserved. // + // | 阅读全文
posted @ 2019-07-31 16:39 猿来你也在这里呀 阅读(847) 评论(0) 推荐(0) 编辑
摘要: <?phpnamespace org;/** * redis操作类 * 说明,任何为false的串,存在redis中都是空串。 * 只有在key不存在时,才会返回false。 * 这点可用于防止缓存穿透 * */class LinkRedis{ private $redis; //当前数据库ID号 阅读全文
posted @ 2019-07-31 16:37 猿来你也在这里呀 阅读(245) 评论(0) 推荐(0) 编辑
摘要: <?php/** * Ethereum JSON-RPC interface * * See Ethereum API documentation for more information: * http://ethereum.gitbooks.io/frontier-guide/content/r 阅读全文
posted @ 2019-07-31 16:36 猿来你也在这里呀 阅读(413) 评论(0) 推荐(0) 编辑
摘要: <?php/*EasyBitcoin-PHPA simple class for making calls to Bitcoin's API using PHP.https://github.com/aceat64/EasyBitcoin-PHP The MIT License (MIT)Copyr 阅读全文
posted @ 2019-07-31 16:34 猿来你也在这里呀 阅读(286) 评论(0) 推荐(0) 编辑