PHPCoinAddress is a PHP Object that creates public/private key pairs for Bitcoin and many other cryptocoins.
PHPCoinAddress is intended to be easy to integrate into other PHP projects.
More info:
https://github.com/zamgo/PHPCoinAddressThis is a beta release, and the project is still under active development. Be careful before using this in a production environment.
Example usage:
require_once 'PHPCoinAddress.php';
$coin = CoinAddress::bitcoin();
print 'public (base58): ' . $coin['public'] . "\n";
print 'public (Hex) : ' . $coin['public_hex'] . "\n";
print 'private (WIF) : ' . $coin['private'] . "\n";
print 'private (Hex) : ' . $coin['private_hex'] . "\n";
All bug reports, fixes, pull requests, comments and criticisms welcome.