PHP code example of phattarachai / thaidate
1. Go to this page and download the library: Download phattarachai/thaidate library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phattarachai / thaidate example snippets
echo thaidate();
// 25 กุมภาพันธ์ 2564
echo thaidate('วันlที่ j F พ.ศ.Y เวลา H:i:s');
// results: วันพฤหัสบดีที่ 25 กุมภาพันธ์ พ.ศ.2564 เวลา 23:55:29
use Illuminate\Support\Carbon;
Carbon::parse('2021-02-25')->thaidate();
// 25 กุมภาพันธ์ 2564
Carbon::parse('2021-02-25')->thaidate('D j M y');
// พฤ. 25 ก.พ. 64
$user->created_at->thaidate();
// 25 กุมภาพันธ์ 2564