|
|
|
บันทึกเวลาลงใน Text File แล้วมันขึ้นภาษา เธฅเนเธญเธเธญเธดเธ :: เธงเธฑเธเธ—เธตเน 23-07-2011 : เน€เธงเธฅเธฒ 22:59:10 แบบนี้อ่ะค่ะ จะแก้ยังไงดีค่ะ |
|
|
|
|
|
|
|
ใส่นี้เข้าไปด้วยครับ
<META content="text/html; charset=utf-8" http-equiv="Content-type">
แล้วเวลาเซฟไฟล์นี้ (file.php) ถ้าใน edit pluse เซฟ encoding เป็น utf-8 ด้วยน่ะครับ
ถ้าเป็น Deamweaver ตั้งค่า encoding ด้วยน่ะครับ เป็น utf-8 ด้วยครับ
Code (PHP)
<?
session_start();
header ('Content-type: text/html; charset=utf-8');
session_unset();
login_log();
?>
<META content="text/html; charset=utf-8" http-equiv="Content-type">
<?
function login_log(){
date_default_timezone_set('Asia/Bangkok');
$hit="./login_log/online.txt";
$timenow=date("วันที่ d-m-Y : เวลา H:i:s");
$file=fopen("$hit","a");
fwrite($file, "ล๊อกอิน :: $timenow \r\n");
fclose($file);
}
echo "<script>alert('คุณได้ออกจากระบบเรียบร้อยแล้ว')</script>";
echo"<script>window.location='index.php';</script>";
?>
|
|
|
|
|
Date :
2011-07-23 23:24:17 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้อยู่ดีคร้า T_T
|
|
|
|
|
Date :
2011-07-23 23:56:43 |
By :
modzaa07 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าไม่ได้ให้ลองใช้ iconv() ดูครับ
|
|
|
|
|
Date :
2011-07-24 08:12:34 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในหน้าออกจากระบบ ลองดู encoding ที่เบราเซอร์ยังครับว่ามันเป็นอะไร
http://php.net/manual/en/function.fwrite.php
ลองศึกษาเพิ่มเติมเกี่ยวกับการเขียนไฟล์ txt แบบ utf-8
bahatest at ifrance doc com 23-Jul-2005 09:40
Code (PHP)
[Editor's Note: No, you only need to use this if you want a BOM (Byte order mark) added to the document - most people do not.]
if you have to write a file in UTF-8 format, you have to add an header to the file like this :
<?php
$f=fopen("test.txt", "wb");
$text=utf8_encode("�a�!");
// adding header
$text="\xEF\xBB\xBF".$text;
fputs($f, $text);
fclose($f);
?>
|
|
|
|
|
Date :
2011-07-24 16:16:16 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ ทำไปทำมาได้เลย ขอบคุณทุกท่านที่เข้ามาแนะนำนะค่ะ ^_^
|
|
|
|
|
Date :
2011-07-24 18:37:29 |
By :
modzaa07 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|