|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2020-04-01 07:38 UTC] michael dot vorisek at email dot cz
Description:
------------
Is it currently possible to use multiple modifications to a date like "first day of -2 months, +15 days" in one modify() call?
Is it currently possible to to write one modify for "15th day of -2 months"?
Test script:
---------------
$d = new \DateTime('2020-03-28 12:00:00');
// first day of the month, ok
echo ((clone $d)->modify('last day of -2 months')->format('j.n.Y')) . "\n";
// 15th day of the month - not working
echo ((clone $d)->modify('first day of -2 months, +15 days')->format('j.n.Y')) . "\n"; // bad result
echo ((clone $d)->modify('15th day of -2 months')->format('j.n.Y')) . "\n"; // not parseable modify string
Expected result:
----------------
31.1.2020
15.1.2020
15.1.2020
Actual result:
--------------
31.1.2020
31.1.2020
Warning: DateTime::modify(): Failed to parse time string (15th day of -2 months) at position 0 (1)
Fatal error: Uncaught Error: Call to a member function format() on bool
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 10:00:01 2025 UTC |
what's wrong with two modify calls? It will allow you to do as many modifications as you want, I don't see how this qualifies as a bug. This works fine: $d = new \DateTime('2020-03-28 12:00:00'); echo $d ->modify('first day of -2 months') ->modify('+15 days') ->format('j.n.Y');