Query: bcscale
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
BCSCALE(3) 1 BCSCALE(3) bcscale - Set default scale parameter for all bc math functionsSYNOPSISbool bcscale (int $scale)DESCRIPTIONSets the default scale parameter for all subsequent calls to bc math functions that do not explicitly specify a scale parameter.PARAMETERSo $scale - The scale factor.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 bcscale(3) example <?php // default scale : 3 bcscale(3); echo bcdiv('105', '6.55957'); // 16.007 // this is the same without bcscale() echo bcdiv('105', '6.55957', 3); // 16.007 ?> PHP Documentation Group BCSCALE(3)