Answers for "change the format of date c#"

PHP
7

php change date format

To convert the date-time format PHP provides strtotime() and date() function. We change the date format from one format to another.

Change YYYY-MM-DD to DD-MM-YYYY
<? php.
$currDate = "2020-04-18";
$changeDate = date("d-m-Y", strtotime($currDate));
echo "Changed date format is: ". $changeDate. " (MM-DD-YYYY)";
?>
Posted by: Guest on April-18-2020
3

how to get the timestamp in javascript

const currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds
Posted by: Guest on April-22-2020
2

how to set date in php

// 1. create a date instance
$date = new DateTime;

// 2. set the date using the setDate(year, month, date) method on the
//    $date instance
$date->setDate(1999,02,19);
Posted by: Guest on April-25-2020
1

date format in java

String pattern = "EEEEE dd MMMMM yyyy HH:mm:ss.SSSZ";
SimpleDateFormat simpleDateFormat =
        new SimpleDateFormat(pattern, new Locale("da", "DK"));

String date = simpleDateFormat.format(new Date());
System.out.println(date);
Posted by: Guest on April-12-2020

Code answers related to "change the format of date c#"

Browse Popular Code Answers by Language