|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-05-22 06:29 UTC] jah at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 13:00:01 2025 UTC |
Fatal error: Call to undefined function: bcmod() in /usr/local/apache/htdocs/emu/v1/webu.php3 on line 67 This code works fine on php3. Fails on php4. function elapsedtime($sec){ $days = floor($sec / 86400); $hrs = floor(bcmod($sec,86400)/3600); $mins = round(bcmod(bcmod($sec,86400),3600)/60); if($days > 0) $tstring = $days . "d,"; if($hrs > 0) $tstring = $tstring . $hrs . "h,"; $tstring = "[" . $tstring . $mins . "m]"; return($tstring); } I compiled php4 with general configuration from README plus mysql support.