Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正在谷歌搜索,但找不到答案。想知道这两个脚本是否有区别?
+3天:
echo date( 'd.m.Y H:i:s', strtotime( '+3 day' ) );
echo date( 'd.m.Y H:i:s', strtotime( '+3 days' ) );
输出完全相同。
那么这是为了确保人们减少错误而实施的还是什么? 并且应该优先使用女巫一号?
这基本上是同一件事,出于可用性和美观的目的:
strtotime( '+1 day' ); strtotime( '+3 day' ); strtotime( '+1 days' ); strtotime( '+3 days' ); strtotime( '+1 weeks' ); strtotime( '+3 week' );
你可以用你更喜欢的那个,基本上是定义de number的那个1 day,,3 days
1 day
3 days