Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

จะรับวันแรกของสัปดาห์ใน PHP ได้อย่างไร


ในการรับวันแรกของสัปดาห์ใน PHP โค้ดจะเป็นดังนี้ -

ตัวอย่าง

<?php
   $res = date('l - d/m/Y', strtotime("this week"));
   echo "First day = ", $res;
?>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

First day = Monday - 09/12/2019

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

<?php
   echo "Displaying Sunday as first day of a week...\n";
   $res = date('l - d/m/Y', strtotime("sunday 0 week"));
   echo "First day (next week) = ", $res;
?>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Displaying Sunday as first day of a week...
First day (next week) = Sunday - 15/12/2019