你不能.目前,您只能获得bcmath.scale INI设置,默认为0:
原文链接:https://www.f2er.com/php/137131.htmlprint ini_get('bcmath.scale');
不幸的是,bcscale()没有改变bcmath.scale INI设置,如果没有像这样的解决方法,你无法获得比例因子:
bcscale(25); function get_bcscale() { $sqrt = bcsqrt('2'); return strlen(substr($sqrt,strpos($sqrt,'.') + 1)); } var_dump(get_bcscale()); # int(25)