Currently i am doing format of date from THAI
To English
Language but it could not format date from THAI
to English
. I researched on Google but i could not found anything over there.
Following is my THAI date formate
15 กรกฎาคม 2562
Currently i am doing format of date from THAI
To English
Language but it could not format date from THAI
to English
. I researched on Google but i could not found anything over there.
Following is my THAI date formate
15 กรกฎาคม 2562
One solution with str_replace
<?php
$search = [
// Here thai months from 1 to 6
'กรกฎาคม',
// And the rest here
];
$replace = [
// Here eng months from 1 to 6
'July',
// And the rest here
];
$tdate = '15 กรกฎาคม 2562';
$edate = str_replace($search, $replace, $tdate);
var_dump($edate);