forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP-7.1: news entry for calendar overflow fix Fix integer overflow in calender.
- Loading branch information
Showing
6 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
| obtain it through the world-wide-web, please send a note to | | ||
| [email protected] so we can mail you a copy immediately. | | ||
+----------------------------------------------------------------------+ | ||
| Authors: Shane Caraveo <[email protected]> | | ||
| Authors: Shane Caraveo <[email protected]> | | ||
| Colin Viebrock <[email protected]> | | ||
| Hartmut Holzgraefe <[email protected]> | | ||
| Wez Furlong <[email protected]> | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--TEST-- | ||
gregoriantojd() | ||
--SKIPIF-- | ||
<?php include 'skipif.inc'; ?> | ||
--FILE-- | ||
<?php | ||
echo gregoriantojd(5, 5, 6000000) . "\n"; | ||
?> | ||
--EXPECT-- | ||
2193176185 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--TEST-- | ||
juliantojd() | ||
--SKIPIF-- | ||
<?php include 'skipif.inc'; ?> | ||
--FILE-- | ||
<?php | ||
echo juliantojd(5, 5, 6000000000) . "\n"; | ||
?> | ||
--EXPECT-- | ||
622764916319 |