上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 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) 编辑
摘要: 第一步 创建交易,广播交易; 第二步 节点接收交易,校验交易; 第三步 检验交易,广播该交易; 第四步 所有节点竞争记账权,挖矿; 第五步 向全网公开计算结果,其他节点验证计算结果; 第六步 记账、获取比特币; 第七步 全网各个节点同步最新版本; 阅读全文
posted @ 2019-04-23 11:46 猿来你也在这里呀 阅读(915) 评论(0) 推荐(0) 编辑
摘要: root@homestead:/etc/php/7.1/fpm/conf.d# vim 20-xdebug.ini zend_extension=xdebug.so xdebug.remote_enable = 1 xdebug.remote_connect_back = 1 ;xdebug.rem 阅读全文
posted @ 2019-01-08 16:43 猿来你也在这里呀 阅读(452) 评论(0) 推荐(0) 编辑
摘要: $filename="文件名称" //直接输出到浏览器 ob_end_flush(); header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment;filename="'.$fil 阅读全文
posted @ 2019-01-08 14:35 猿来你也在这里呀 阅读(854) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页