• 大小: 3.48KB
    文件类型: .php
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 标签: php  区块链  hp  

资源简介

可以发行自己的货币

资源截图

代码片段和文件信息

/** 
 * 简单的PHP区块链 
 * @author Yoper 
 * @PHP技术交流QQ群 370648191 
 * @Email chen.yong.peng@foxmail.com 
 * @wechat YoperMan 
 */  
 
 //只有一个类、4个方法。可直接运行。
 
namespace common\library\block;  
/** 
 * 区块结构 
 */  
class block{  
    private $index;  
    private $timestamp;  
    private $data;  
    private $previous_hash;  
    private $random_str;  
    private $hash;  
    public function __construct($index$timestamp$data$random_str$previous_hash)  
    {  
        $this->index=$index;  
        $this->timestamp=$timestamp;  
        $this->data=$data;  
        $this->previous_hash=$previous_hash;  
        $this->random_str=$random_str;  
        $this->hash=$this->hash_block();  
    }  
    public function __get($name){  
        return $this->$

评论

共有 条评论