PHP ROUND十进制整数

时间:2015-07-22 07:10:16

标签: php

我有问题,如何转

3.66666667 进入 3.7

什么样的PHP功能会帮助解决这个问题?

2 个答案:

答案 0 :(得分:1)

<?php echo round( 3.66666667 , 1); ?>

答案 1 :(得分:0)

你可以试试这个。

$scope.login = function() {
  $scope.authData = null;
  $scope.error = null;

  auth.$authWithPassword({
    email: "email@myemail.com",
    password: "alseTest"
  }).then(function(authData) {
    console.log(authData)
    $scope.authData = authData;
    $scope.alseCards = $firebaseArrary(ref.child("alseCards"));
    $scope.items = $firebaseArrary(ref.child("items"));
  }).
  catch(function(error) {
    $scope.error = error;
  });
};