jurruh /
该软件包的最新版本(0.0.1)没有可用的许可证信息。
0.0.1
2017-12-09 18:05 UTC
Requires (Dev)
- phpunit/phpunit: ^6.5
This package is not auto-updated.
Last update: 2024-09-29 03:41:53 UTC
README
该仓库包含一个基本的PHP区块链实现。
示例用法
//Create the chain $chain = new \Blockchain\Chain(); //Add some blocks to te chain $firstBlock = new \Blockchain\Block(0, null, time(), 'Example data 1'); $chain->addBlock($firstBlock); $secondBlock = new \Blockchain\Block(1, $firstBlock->getHash(), time(), 'Example data 2'); $chain->addBlock($secondBlock); //Check if valid if($chain->isValid()){ //The chain is valid }