From:             [EMAIL PROTECTED]
Operating system: 
PHP version:      Irrelevant
PHP Bug Type:     Documentation problem
Bug description:  gmmktime() documentation error

Description:
------------
The manual entry above is wrong.  The statement:
"Identical to mktime() except the passed parameters represents a GMT
date."
should read
"Identical to mktime() except the timestamp produced represents a GMT
date."

Here is a test case:
<?
// Assume month/day/year are set to today
$x = gmmktime(gmdate('H'),gmdate('i'),gmdate('s'),$month,$day,$year);
print ($x >= gmmktime()) ? "Yes" : "No";
?>
This produces "Yes" as the answer.  Changing it to:
<?
// Assume month/day/year are set to today
$x = gmmktime(date('H'),date('i'),date('s'),$month,$day,$year);
print ($x >= gmmktime()) ? "Yes" : "No";
?>
Produces the expected answer of "No"

Reproduce code:
---------------
<?
// Assume month/day/year are set to today
$x = gmmktime(gmdate('H'),gmdate('i'),gmdate('s'),$month,$day,$year);
print ($x >= gmmktime()) ? "Yes" : "No";
?>

Expected result:
----------------
No

Actual result:
--------------
Yes

-- 
Edit bug report at http://bugs.php.net/?id=37187&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=37187&r=trysnapshot44
Try a CVS snapshot (PHP 5.1): 
http://bugs.php.net/fix.php?id=37187&r=trysnapshot51
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=37187&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=37187&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=37187&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=37187&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=37187&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=37187&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=37187&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=37187&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=37187&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=37187&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=37187&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=37187&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=37187&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=37187&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=37187&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=37187&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=37187&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=37187&r=mysqlcfg

Reply via email to