|
|
|
เรื่อง export ข้อมูลเป็น txt แล้วขึ้นบรรทัดใหม่ คือว่า ผมได้โค๊ดตัวอย่างจากเว็บนี้แล้วนำไปประยุกต์ใช้ |
|
|
|
|
|
|
|
echo nl2br("$result[format]|$result[AccNo]|$result[Victimno]|$result[AppNo]|$result[MedCode]|$result[MedMoney]##\n");// บรรทัดนี้คือแสดงข้อมูลแต่ละเร็คคอร์ด
|
|
|
|
|
Date :
13 พ.ค. 2548 13:41:46 |
By :
surenus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\n คือการขึ้นบรรทัดใหม่ครับ
|
|
|
|
|
Date :
16 พ.ค. 2548 10:29:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเราจะเขียน csv file แบบแบ่งเป็น column ทำยังไงครับ..เช่น column A,B,C,D,E...
|
|
|
|
|
Date :
30 ธ.ค. 2548 14:16:59 |
By :
kai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
<html>
<head>
<title>ThaiCreate.Com PHP & writefile</title>
</head>
<body>
<?
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'w');
$strText1 = "I Love ThaiCreate.Com Line1\r\n";
fwrite($objFopen, $strText1);
$strText2 = "I Love ThaiCreate.Com Line2\r\n";
fwrite($objFopen, $strText2);
$strText3 = "I Love ThaiCreate.Com Line3\r\n";
fwrite($objFopen, $strText3);
if($objFopen)
{
echo "File writed.";
}
else
{
echo "File can not write";
}
fclose($objFopen);
?>
</body>
</html>
?>
|
|
|
|
|
Date :
2009-04-26 11:26:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|