I can't find anything official, but I saw a tutorial that says strtotime()
uses GNU Date Input Formats. Those are described in detail in the GNU manual.
One discrepancy I notice is that "next" doesn't match the
behaviour described in the GNU manual. Using strtotime(), "next Thursday" will give you the same result as "Thursday", unless today is a Thursday.
Bugün, o, bir Perşembe ise,
- strtotime ("Perşembe") == strtotime ("bugün")
- strtotime ("önümüzdeki Perşembe") == strtotime ("bugün + 7 gün")
Bugün, o, bir Perşembe değilse
- strtotime ("Perşembe") == strtotime ("önümüzdeki Perşembe")
PHP 5.2.6 kullanıyorum.
Update:
Ben bu yayınlanmıştır beri kullanım kılavuzu güncellendi, yoksa ben kör oldu sanırım. Şimdi relative formats üzerine bir bölüm içeriyor Date and Time Formats chapter için bir bağlantı içerir.