August 2000
Intermediate to advanced
800 pages
13h 15m
English
The following functions affect the operation of PHP. Some of them alter configuration variables. Others cause a script to stop executing for a period of time.
The bcscale function sets the default scale for the functions that perform math on arbitrary-precision numbers. The scale is the number of digits after the decimal point. See the section on arbitrary-precision numbers in Chapter 10, "Mathematical Functions."
<?
//use ten digits
bcscale(10);
?>
Calling C's stat function may take a considerable amount of time. To increase performance, PHP caches the results of each call. When you use a function that relies on stat, the information from the cache is returned. If information about ...
Read now
Unlock full access