[insert_php] $thissat = date(‘Y-m-d’,strtotime(‘this saturday’)); //2014-07-08
$thiswed = date(‘Y-m-d’,strtotime(‘this wednesday’)); //2014-07-09
$thaiweek=array(“วันอาทิตย์”,”วันจันทร์”,”วันอังคาร”,”วันพุธ”,”วันพฤหัส”,”วันศุกร์”,”วันเสาร์”);
$thaimonth=array(“มกราคม”,”กุมภาพันธ์”,”มีนาคม”,”เมษายน”,”พฤษภาคม”,”มิถุนายน”,”กรกฎาคม”,”สิงหาคม”,”กันยายน”,”ตุลาคม”,”พฤศจิกายน”,”ธันวาคม”);

if($thissat > $thiswed)
{

$shipDate = $thaiweek[date(‘w’,strtotime(‘this wednesday’))] ,”ที่”,date(‘j’,strtotime(‘this wednesday’)), $thaimonth[date(‘m’,strtotime(‘this wednesday’))-1] , ” พ.ศ. “,date(” Y “,strtotime(‘this wednesday’))+543;

}
else
{

$shipDate = $thaiweek[date(‘w’,strtotime(‘this saturday’))] ,”ที่”,date(‘j’,strtotime(‘this saturday’)), $thaimonth[date(‘m’,strtotime(‘this saturday’))-1] , ” พ.ศ. “,date(” Y “,strtotime(‘this saturday’))+543;

}

[insert_php]