phpbar.de logo

Mailinglisten-Archive

[php] Anzahl Tage berechnen

[php] Anzahl Tage berechnen

Tobias Orterer php_(at)_phpcenter.de
Sat, 21 Sep 2002 09:06:29 +0200


Andre.Steffens_(at)_postadress.de wrote:
> $in = "01.07.2001";
> $out = "10.12.2002";
> function get_tage($in,$out) {
>    return $tage;
> }


<?php

function get_days($start,$end) {
	$start 		= explode(".",$start);
	$end 		= explode(".",$end);
	$start 		= mktime(0,0,0,$start[1],$start[0],$start[2]);
	$end 		= mktime(0,0,0,$end[1],$end[0],$end[2]);
	$between 	= round(($end - $start) / 86400);
	return $between;
}

$in = "01.07.2001";
$out = "10.12.2002";

echo get_days($in,$out);

?>



-- 
<?php /**
* Tobias Orterer - Schmiedgasse 21 - 94032 Passau
* e-mail: der_(at)_tobi.li # web: www.topwebmaster.net
* phone: ++49-8519666725 # mobil: ++49-1747688873
*/ ?>


php::bar PHP Wiki   -   Listenarchive