Skip to content

Instantly share code, notes, and snippets.

@placecodex
Created April 11, 2021 23:17
Show Gist options
  • Save placecodex/37387b5289946d0714bb65874c5e4dd6 to your computer and use it in GitHub Desktop.
Save placecodex/37387b5289946d0714bb65874c5e4dd6 to your computer and use it in GitHub Desktop.
satoshi to bitcoin format php
$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