今年区块链特别火,我也很火啊。我火什么呢。前几年,公众平台出现,还得花时间去学去看,后来小程序出现,又得花时间精力去学去看。现在比特币、以太坊等去中心化货币带起了区块链的发展。还得学。
没办法,技术改变师姐。不,是改变世界。
前些天看到python写的50行代码实现的简单区块链。今天让我们PHP也实现一下区块链的简单流程。
如有需要可加PHP交流群(370648191/201923866)。
只有一个类、4个方法。可直接运行。
- <?php
-
-
-
-
-
-
-
- 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->$name;
- }
- private function hash_block(){
- $str=$this->index.$this->timestamp.$this->data.$this->random_str.$this->previous_hash;
- return hash("sha256",$str);
- }
- }
-
-
-
-
- function create_genesis_block(){
- return new \common\library\block\block(0, time(),"第一个区块",0,0);
- }
-
-
-
-
-
- function dig(\common\library\block\block $last_block_obj){
- $random_str = $last_block_obj->hash.get_random();
- $index=$last_block_obj->index+1;
- $timestamp=time();
- $data='I am block '.$index;
- $block_obj = new \common\library\block\block($index,$timestamp,$data,$random_str,$last_block_obj->hash);
-
-
- if(!is_numeric($block_obj->hash{0})){
- return false;
- }
-
- return $block_obj;
- }
-
-
-
-
-
- function verify(\common\library\block\block $last_block_obj){
- return true;
- }
-
-
-
-
-
- function get_random($len=32){
- $str="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
- $key = "";
- for($i=0;$i<$len;$i++)
- {
- $key.= $str{mt_rand(0,32)};
- }
- return $key;
- }
-
-
- header("Content-type:text/html;charset=utf-8");
-
- $blockchain=[\common\library\block\create_genesis_block()];
-
-
- $previous_block = $blockchain[0];
- for($i=0;$i<=10;$i++){
- if(!($new_block=dig($previous_block))){
- continue;
- }
- $blockchain[]=$new_block;
- $previous_block=$new_block;
-
-
- echo "区块已加入链中.新区块是 : {$new_block->index}<br/>";
- echo "新区块哈希值是 : {$new_block->hash}<br/>";
- print_r($new_block);
- echo "<br/><br/>";
- }
以上文件可以直接运行。运行结果如下:
完善之后,就可以发行自己的货币或者智能合约了。
原文发布时间为:2018年02月04日
本文作者:chenYoper-陈永鹏
本文来源:,如需转载请联系原作者。