হ্যাঁ, strtotime() এর সাথে date() ব্যবহার করে PHP-তে তারিখের বিন্যাস পরিবর্তন করুন। ধরা যাক নিম্নলিখিতটি আমাদের তারিখ -
$dateValue = "2020-09-19";
strtotime() পদ্ধতি -
ব্যবহার করে তারিখ বিন্যাস পরিবর্তন করুন$modifiedDate= date("d-m-Y", strtotime($dateValue));
উদাহরণ
<!DOCTYPE html> <html> <body> <?php $dateValue = "2020-09-19"; echo "The original date format is=",$dateValue,"<br>"; $modifiedDate= date("d-m-Y", strtotime($dateValue)); echo "The changed date format is= ".$modifiedDate; ?> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট তৈরি করবে
The original date format is=2020-09-19 The changed date format is= 19-09-2020