Index: temp/trunk/html/test/kakinaka/tax.php
===================================================================
--- temp/trunk/html/test/kakinaka/tax.php	(revision 9857)
+++ temp/trunk/html/test/kakinaka/tax.php	(revision 9859)
@@ -4,7 +4,7 @@
 
 
-echo "»Í¼Î¸ÞÆþ¡§" . sfRound(5.4445,3);
-echo "ÀÚ¤ê¼Î¤Æ¡§" . sfFloor(5.4445,3);
-echo "ÀÚ¤ê¾å¤²¡§" . sfCeil(5.4445,3);
+echo "»Í¼Î¸ÞÆþ¡§" . sfRound(5.4445,3) . "<br>";
+echo "ÀÚ¤ê¼Î¤Æ¡§" . sfFloor(5.4445,3) . "<br>";
+echo "ÀÚ¤ê¾å¤²¡§" . sfCeil(5.4445,3) . "<br>";
 
 
Index: temp/trunk/data/lib/slib.php
===================================================================
--- temp/trunk/data/lib/slib.php	(revision 9857)
+++ temp/trunk/data/lib/slib.php	(revision 9859)
@@ -1148,5 +1148,5 @@
 	// À°¿ô³î¤Ä0½Ð¤Ê¤±¤ì¤Ð·å¿ô»ØÄê¤ò¹Ô¤¦
 	if(sfIsInt($adjust) and $pow > 0){
-		$ret = (floor($value * $adjust)/$adjust);
+		$ret = (ceil($value * $adjust)/$adjust);
 		$ret = sfCeil($ret, $pow - 1);
 		return $ret;
