Created
April 11, 2021 23:17
-
-
Save placecodex/37387b5289946d0714bb65874c5e4dd6 to your computer and use it in GitHub Desktop.
satoshi to bitcoin format php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$satoshi = 5000; //Satoshi to btc | |
echo number_format(($satoshi)*(pow(10, -8)), 8, '.', ''); //Returns 0.00005000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment