PHP以不同的方式给出了不同的结果

时间:2015-08-02 09:20:13

标签: php html

这是我的代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
 <meta name="viewport" content="width=device-width, initial-scale=1"><title>Day Calculator V 2.0</title>
</head>
<body>
<h1><p class="text-center"><strong>Esta es una calculadora de dias, funciona seleccionando de que mes a que mes quieres calcular los dias. </strong></p></h1>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method=post>
<div class="center-block text-center nofloat">
    <input type=radio id="rad1" class="" name="tipfech" onclick="var divOne = document.getElementById('1');
    divOne.style.visibility='hidden'" value="actual" checked> Usar fecha actual<br>
</div>
<div class="center-block text-center nofloat">
  <input type=radio id="rad2" name="tipfech" onclick="var divOne = document.getElementById('1');
divOne.style.visibility='visible'" value="fecha"> Seleccionar fecha </div>
  <div id="1" class="text-center">
    <script>
    var divOne = document.getElementById('1');
divOne.style.visibility='hidden';
</script>
    Del 
    <input class="formachica form-control center-block" type="date" name="date1">
    </div>
  <div class="text-center">
    Al
    </div>
    <input class="formachica form-control center-block" type="date" name="date2">
    <br/>
<input type=submit class="center-block btn btn-primary" value="Submit"/>
</form>
<br/>
</div>
<div id="3" class="text-center">
<?php
$tipfech = $_POST[tipfech];
$da1 = $_POST[date1];
$da2 = $_POST[date2];
if ($tipfech == "actual"){
    $yr1 = date("Y");
    $month = date("m");
    $day1 = date("d");
    $date1 = new DateTime("$yr1-$month-$day1");
    }
$date1 = new DateTime("$da1");
$date2 = new DateTime("$da2");
$interval = $date1->diff($date2);
echo "Son " . $interval->y . " años, " . $interval->m." meses, ".$interval->d." dias "; 

// shows the total amount of days (not divided into years, months and days like above)
echo "<br/>"."Son " . $interval->days . " dias ";
?>
</div>
</body>
</html>

我的&#34; fecha actual&#34;是当前日期,所以当我选择该选项时,请在2015年8月2日(dd-mm-yy)和第二个日期到2015年8月4日它返回一天,但如果我手动选择第一个日期(同一个02) / 08/2015)它返回两天。

实施例: http://monopolo11.ninja/tests/imgs/ (照片在那里,因为我的声誉很低,我可以把它放在帖子中)

为什么会这样?

先谢谢。

示例1:Example 1 示例2:Example 2

2 个答案:

答案 0 :(得分:2)

您始终会覆盖$date1 var。

if ($tipfech == "actual"){
    $yr1 = date("Y");
    $month = date("m");
    $day1 = date("d");
    $date1 = new DateTime("$yr1-$month-$day1");
}
$date1 = new DateTime("$da1");

如果不手动填写开始日期,则会使用参数new DateTime创建NULL。它返回当前日期,但是时间是实际的。

这导致计算日向下舍入(因为少于48小时)。

答案 1 :(得分:0)

由于chumkiu而修复了它。 我补充说:

  if ($tipfech !== "actual"){
    $date1 = new DateTime("$da1");
    }

抱歉,这是一个noob错误,谢谢!