|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-07 10:17 UTC] sniper@php.net
[2003-07-28 17:07 UTC] edink@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 00:00:01 2025 UTC |
Description: ------------ This script gives different results in PHP4 (PHP 4.3.2) og PHP5 (5.0.0 BETA 1) Reproduce code: --------------- <?php $end = date ("U", mktime (11, 00, 0, 7, 4, 2003)); $start = date ("U", mktime (8, 35, 0, 1, 11, 2003)); $hanne = $end - $start; echo round ($hanne/3600, 2); ?> Expected result: ---------------- PHP4: 4177.42 PHP5: 4177.41 Actual result: -------------- ...