### Description The following code: ```php <?php bcdiv('0.03772321', '9650.0', 8); bcdiv('0.03772321', '9650.0', 9); ``` Resulted in this output: ``` "0.00003909" "0.000003909" ``` But I expected this output instead: ``` "0.00000390" "0.000003909" ``` ### PHP Version PHP 8.4.2 ### Operating System _No response_