比特币sendfrom不处理交易

时间:2013-09-23 14:08:47

标签: php post bitcoin

sendfrom有一个非常奇怪的问题。要处理我使用从$ _POST收到的表单中的动态值。

$myaccount = trim($_POST['myaccount']);
$to_wallet = trim($_POST['to_wallet']);
$wammount = trim($_POST['wammount']);

我可以回应它们,我可以清楚地看到从表单

传递的所有数据

现在我将它们插入

$message = ($bitcoin->sendfrom($myaccount, $to_wallet, $wammount));

我发现所有的$ myaccount,$ to_wallet都被正确传递但$ wammount导致问题并且代码没有被执行。我在字段中插入0.0001表格 “wammount”然而,一旦这是硬编码的

$myaccount = trim($_POST['myaccount']);
$to_wallet = trim($_POST['to_wallet']);
$wammount = 0.0001;

并在下面运行命令一切运行良好并处理事务。知道为什么吗?

$message = ($bitcoin->sendfrom($myaccount, $to_wallet, $wammount));

1 个答案:

答案 0 :(得分:2)

添加floatval()会有什么作用?

$wammount = floatval(trim($_POST['wammount']));