I am developing a joomla extension and in default.php file i have this code:

foreach($this->subv as $subv) {
    $giorni = ((int)$subv->data_fine - (int)$subv->data_inizio);
    $ore = ($giorni * 24) % 24;
    echo $giorni.' : '.$ore;
}

$this->subv is an object that contains the result of a mysql query. My problem is that echo prints $subv->data_fine value, and not the result of the substraction. $subv->data_fine and $subv->data_inizio contain the result of time() function. How can i resolve it this problem? Thanks!

link|improve this question

70% accept rate
1  
What is format of $subv->data_fine, please give me var_dump($subv->data_fine) result. – Faraona Oct 11 '11 at 8:40
And by the way, won't $ore always be 0? – Stanislav Shabalin Oct 11 '11 at 8:42
the result of var_dump is string(10) "1318926057" – pindol Oct 11 '11 at 8:46
$ore is always 0, yes, but it doesn't matter now :) – pindol Oct 11 '11 at 8:46
feedback

2 Answers

up vote 2 down vote accepted

If I understand you problem correctly, $giorni is equal to $subv->data_fine, which would simply mean that (int)$subv->data_inizio evaluates to zero. Have you checked that?

link|improve this answer
No, it isn't zero – pindol Oct 11 '11 at 8:47
Well, what is it? :) – Nikoloff Oct 11 '11 at 8:50
$subv->data_fine and $subv->data_inizio contain the result of time() function (called in different tme..) – pindol Oct 11 '11 at 8:52
If you subtract y from x and the result is equal to x, there's no possibility other than y being zero. You've given the var_dump() for data_fine, now give the one for data_inizio. So far, my crystal ball tells me it's null, which will evaluate to zero when cast to int :) Just var_dump($subv) and you'll see what's wrong.. – Nikoloff Oct 11 '11 at 9:01
Yes, you're right, is NNULL. Now the problem is: why is it NULL? – pindol Oct 11 '11 at 9:04
show 3 more comments
feedback

You can use mysql to get the difference between 2 dates (DATEDIFF function):

http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.