Search Results

Search: Posts Made By: kovacsakos
Forum: Web Development 03-23-2012
3,938
Posted By kovacsakos
Thanks for your help!
Thanks for your help!
43,509
Posted By kovacsakos
Calculate the number of days between 2 dates - bash script
I wrote the day calculator also in bash. I would like to now, that is it good so?

#!/bin/bash

datum1=`date -d "1991/1/1" "+%s"`
datum2=`date "+%s"`

diff=$(($datum2-$datum1))
...
Forum: Web Development 03-22-2012
3,938
Posted By kovacsakos
Calculate the number of days between 2 dates - PHP
Is this code good for this purpose?

<?php
$date1 = mktime(0,0,0,01,01,1991);
$date2 = mktime(0,0,0,03,22,2012);

$diff = $date2 - $date1;
$days = $diff / (60*60*24);

echo ($days . "<br...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 11:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy