পিএইচপি-তে সপ্তাহের প্রথম দিন পেতে, কোডটি নিম্নরূপ -
উদাহরণ
<?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