91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 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->$

評論

共有 條評論