ต้องการแสดงวันที่รูปแบบ " วันจันทร์ที่ 8 ตุลาคม 2550 "
ใน php ถ้าผมต้องการให้แสดงว่า วันนี้เป็นวันอะไร เช่น จันทร์ หรือ อังคาร เป็นต้น ต้องเขียน สคริปยังไงคับ
เรื่องของเรื่องคือผมต้องการแสดงเป็นรูปแบบนี้ เช่น " วันจันทร์ที่ 8 ตุลาคม 2550 "
อะคับผมมีสคริปที่เป็น javascript ดังนี้
now = new Date();
var thday = new Array ("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
var thmonth = new Array ("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน", "กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม");
document.write("วัน" + thday[now.getDay()]+ "ที่ "+ now.getDate()+ " " +thmonth[now.getMonth()]+ " " + (0+now.getYear()+543));
แล้วใน IE แสดงผลถูกต้อง แต่ใน Firefox และ Opera มันจะ getYear ออกมาเป็น 107 อะคับ แล้วพอผมบวกด้วย 543 มันก็เลยไม่ถูกต้องอะคับ ผมอยากได้แบบแสดงผลถูกต้องหมดอะคับ
ถ้าใครมีที่เป็น Javascript หรือ php ก็ได้ ผมขอหน่อยนะคับ
Tag : - - - -
Date :
8 ต.ค. 2550 17:04:05
By :
sosay2
View :
2794
Reply :
3
$hour = 0; //ปรับให้ตรงตามต้องการ
$min = 10; //ปรับให้ตรงตามต้องการ
$Year = date("Y")+543;
$thaiweekFull=array("วันอาทิตย์ ที่","วันจันทร์ ที่","วันอังคาร ที่","วันพุธ ที่","วันพฤหัสบดี ที่","วันศุกร์ ที่","วันเสาร์ ที่");
$thaimonthFull=array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม", "พฤศจิกายน","ธันวาคม");
$thaimonth=array("ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.", "พ.ย.","ธ.ค.");
$day = $thaiweekFull[date("w")]. date(" j "). $thaimonthFull[date("m")-1]. " ". $Year . date(" เวลา H:i น.",mktime( date("H")+$hour, date("i")+$min ));
ถูกปะ
Date :
9 ต.ค. 2550 09:45:49
By :
xboy
PHP นะครับ
print1="";
print2="";
print3="";
today = new Date();
weekday = today.getDay();
if (weekday == 6) print1='วันเสาร์ที่';
if (weekday == 0) print1='วันอาทิตย์ที่';
if (weekday == 1) print1='วันจันทร์ที่';
if (weekday == 2) print1='วันอังคารที่';
if (weekday == 3) print1='วันพุธที่';
if (weekday == 4) print1='วันพฤหัสบดีที่';
if (weekday == 5) print1='วันศุกร์ที่';
month = today.getMonth();
if (month == 0) print2='มกราคม';
if (month == 1) print2='กุมภาพันธ์';
if (month == 2) print2='มีนาคม';
if (month == 3) print2='เมษายน';
if (month == 4) print2='พฤษภาคม';
if (month == 5) print2='มิถุนายน';
if (month == 6) print2='กรกฎาคม';
if (month == 7) print2='สิงหาคม';
if (month == 8) print2='กันยายน';
if (month == 9) print2='ตุลาคม';
if (month == 10) print2='พฤศจิกายน';
if (month == 11) print2='ธันวาคม';
date = today.getDate();
year=today.getYear();
document.write (print1,' ',date, ' ', print2,' ',year+543);
Date :
12 ต.ค. 2550 19:45:14
By :
Nicky
เปลี่ยนจาก " + (0+now.getYear()+543));
** เป็น " + (now.getFullYear()+543));
ไม่ต้องลองครับ ใช้ได้เลย พ.ศ ตรงแปะ
Date :
18 มิ.ย. 2551 10:14:07
By :
Songtoday.com
Load balance : Server 02