|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-01-12 06:17 UTC] eru@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 14:00:01 2025 UTC |
Description: ------------ <?php $a = 3100; echo "\$a :".$a."\n"; $a *= 1.025; echo "\$a * 1.025 :".$a."\n"; echo "round \$a:".round($a)."\n"; //get 3177 echo "round \$a:".round("$a")."\n"; //get 3178 $b = "3177.5"; echo "\$b:".$b."\n"; echo "round \$b:".round($b)."\n"; //get 3178 ?>