1. Go to this page and download the library: Download flavienbwk/blockchain-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
flavienbwk / blockchain-php example snippets
$Blockchain = new \flavienbwk\BlockchainPHP\Blockchain();
$block = $Blockchain->addBlock("blockchain.dat", "What you want to put in the blockchain");
$block->hasError(); // Returns true or false if there was an error while adding the block.
$block->getMessage(); // Returns the error message.
$block->getHash(); // Returns the hash (SHA256) of the block.
$block->getPrevHash(); // Returns the hash (SHA256) of the block added before this one.
$block->getData(); // Returns the data stored in the block.
$block->getPosition(); // Returns the height/position of the block in the blockchain.
$block->getJson(); // Returns a JSON associative array with all the data of the block.
// ...
// Go to /src/Block.php to see all the getters.