DateTimeFormat Process
This example shows the usage of DateTimeFormat process
name | joined_date |
John |
2018-08-01 01:34:12 |
Marry |
2018-09-12 10:22:44 |
Peter |
2018-09-03 13:44:14 |
Donald |
2018-09-26 17:27:54 |
->pipe(new DateTimeFormat(array(
"joined_date"=>array(
"from"=>"Y-m-d H:i:s",
"to"=>"M jS, Y",
)
)))
name | joined_date |
John |
August 1st, 2018 |
Marry |
September 12th, 2018 |
Peter |
September 3rd, 2018 |
Donald |
September 26th, 2018 |
The example demonstrates usage of `DateTimeFormat` process. The DateTimeFormat used to format the datetime column `from` a format `to` another. The usage is very straight forward, you enter the current format of your datetime column and the format you want to convert to.
The DateTimeFormat support formatting many columns at same time, for example:
```
->pipe(new DateTimeFormat(array(
"joined_date"=>array(
"from"=>"Y-m-d H:i:s",
"to"=>"F jS, Y",
),
"leaved_date"=>array(
"from"=>"Y-m-d H:i:s",
"to"=>"F jS, Y",
),
)))
```