Я искал эквивалентную функцию в python
, которая действует как PHP
функция strtotime ( string $time [, int $now = time() ] ) : int
(strtotime
)
Я ищу то, что может вернуть то же значение, что и следующее.
strtotime("+3 days");
strtotime("+1 week");
strtotime("+1 month", $date);
strtotime("+1 year");