我正在尝试使用 php 和 bc-math 扩展将 wei 转换为 eth。
尝试使用此功能对其进行转换时:
function wei2eth($wei)
{
return bcdiv($wei,1000000000000000000,18);
}
我收到以下错误:
警告:bcdiv():第 121 行 C:\xampp\htdocs\test\coindata.php 中除以零
有没有人使用 bc-math 扩展和 bcdiv 将 wei 转换为 eth 并且知道为什么我会收到这个错误?
提前致谢