tectiv3/monero_address

PHP门罗币地址创建/验证库

v1.1 2018-02-07 14:19 UTC

This package is auto-updated.

Last update: 2024-09-07 16:05:24 UTC


README

一个用于创建/验证门罗币地址的小型库

使用方法

<?php
require_once('vendor/autoload.php');

use tectiv3\MoneroAddress;

$m = new MoneroAddress('4LZerFMFcVxfdJA19zHBNa94x6KLTDGMZ8eyWBNz8wYt6nSScuLKUvPNW6h3hasuZK6JYFjYCigEUWupwBScV1e4Ldw4wbvi1ma9egjCxU');
$m->print();

$m = new MoneroAddress('4AryqSXm1ESfdJA19zHBNa94x6KLTDGMZ8eyWBNz8wYt6nSScuLKUvPNW6h3hasuZK6JYFjYCigEUWupwBScV1e4EDqFbr8');
$m->print();
echo $m->makeIntegrated('668927f1bd69114c');

特别感谢luigi1111Stack Exchange上的此答案