Cacul de l'heure en php
Résolu/Fermé
drogba7213
Messages postés
1524
Date d'inscription
mardi 14 août 2007
Statut
Membre
Dernière intervention
3 avril 2010
-
2 févr. 2009 à 14:11
drogba7213 Messages postés 1524 Date d'inscription mardi 14 août 2007 Statut Membre Dernière intervention 3 avril 2010 - 2 févr. 2009 à 14:59
drogba7213 Messages postés 1524 Date d'inscription mardi 14 août 2007 Statut Membre Dernière intervention 3 avril 2010 - 2 févr. 2009 à 14:59
A voir également:
- Cacul de l'heure en php
- 2go internet = combien d'heure - Forum Opérateurs & Réseaux mobiles
- Easy php - Télécharger - Divers Web & Internet
- 1go internet = combien d'heure - Forum Mobile
- Quel est l'équivalent de 1 Go en heures de vidéos ? ✓ - Forum Réseaux sociaux
2 réponses
drogba7213
Messages postés
1524
Date d'inscription
mardi 14 août 2007
Statut
Membre
Dernière intervention
3 avril 2010
21
2 févr. 2009 à 14:46
2 févr. 2009 à 14:46
je suis assez perdu pouvez vous m'aider svp
drogba7213
Messages postés
1524
Date d'inscription
mardi 14 août 2007
Statut
Membre
Dernière intervention
3 avril 2010
21
2 févr. 2009 à 14:59
2 févr. 2009 à 14:59
j'avance doucement mais surement voici un up par rapport a mon avancement
si vous pourriez quand meme jeter un coup je n'arrive pas a finaliser
while (odbc_fetch_row($rs))
{
$hdeb=odbc_result($rs,"HEURE_DEBUT");
$hfin=odbc_result($rs,"HEURE_FIN");
$duree = difheure($hdeb,$hfin);
list($hh, $mm, $ss)=explode(":",$duree);
$totalhh = $totalhh + $hh;
$totalmm = $totalmm + $mm;
$totalss = $totalss + $ss;
}
/*if ($totalss >= 60)
{
}
elseif ($totalmm >=60)
{
$totalhh = $totalhh + 1;
$totalmm = $mm%60;
}*/
if ($totalmm >=60 || $totalss >= 60)
{
$retenuess = intval($totalss/60);
$totalmm = $totalmm + $retenue;
$totalss = $totalss%60;
$retenuemm = intval($totalmm/60);
$totalhh = $totalhh + $retenuemm;
$totalmm = $totalmm%60;
}
$totalduree = $totalhh.":".$totalmm.":".$totalss;
si vous pourriez quand meme jeter un coup je n'arrive pas a finaliser
while (odbc_fetch_row($rs))
{
$hdeb=odbc_result($rs,"HEURE_DEBUT");
$hfin=odbc_result($rs,"HEURE_FIN");
$duree = difheure($hdeb,$hfin);
list($hh, $mm, $ss)=explode(":",$duree);
$totalhh = $totalhh + $hh;
$totalmm = $totalmm + $mm;
$totalss = $totalss + $ss;
}
/*if ($totalss >= 60)
{
}
elseif ($totalmm >=60)
{
$totalhh = $totalhh + 1;
$totalmm = $mm%60;
}*/
if ($totalmm >=60 || $totalss >= 60)
{
$retenuess = intval($totalss/60);
$totalmm = $totalmm + $retenue;
$totalss = $totalss%60;
$retenuemm = intval($totalmm/60);
$totalhh = $totalhh + $retenuemm;
$totalmm = $totalmm%60;
}
$totalduree = $totalhh.":".$totalmm.":".$totalss;