gpt4 book ai didi

php - 如何在 Faker 中获取 future 日期

转载 作者:IT王子 更新时间:2023-10-28 23:57:34 25 4
gpt4 key购买 nike

我如何获得 future 的日期:

https://github.com/fzaninotto/Faker#fakerproviderdatetime

dateTime($max = 'now')  

即 future 日期时间的 $max 值应该是多少

最佳答案

您可以将 strtotime 字符串条件传递给 $faker->dateTimeBetween()

//ranging from today ending in 2 years
$faker->dateTimeBetween('+0 days', '+2 years')

//ranging from next week ending in 1 month
$faker->dateTimeBetween('+1 week', '+1 month')

//ranging from next sunday to next wednesday (if today is wednesday)
$faker->dateTimeBetween('next sunday', 'next wednesday')

参见 http://php.net/manual/en/function.strtotime.php获取字符串用法和组合的完整列表。

关于php - 如何在 Faker 中获取 future 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31076792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com