
Bom Dia Desbravadores 🙂 Segue contribuição para a geração do txid em php 🙂 function genpixtxid($len = 26) {
$cht = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$chtLen = strlen($cht);
$rnd = '';
for ($i = 0; $i < $len; $i++) {
$rnd .= $cht[rand(0, $chtLen - 1)];
}
return $rnd;
}
echo genpixtxid() ;