|
|
|
รบกวนถามคะ เปลี่ยนจากการรับข้อมูลจาก textbox เป็น รับข้อมูลจาก textfile ต้องแก้โค้ดยังไงคะ |
|
|
|
|
|
|
|
รบกวนพี่ ๆ ช่วยดูให้หน่อยนะคะ คืออยากให้มันรับข้อมูลจากจาก textfile แทนอ่ะคะ ต้องแก้โค้ดตรงไหนบ้างคะ ^^
Code (PHP)
<form method="post">
<textarea name="input_text" cols="80" rows="10"></textarea>
<input type="submit" value="submit">
</form>
<?php
function swath($input_text)
{
$input_filename= tempnam("/tmp", "swath_");
$output_filename= tempnam("/tmp", "swath_");
$input_text_tis620 = iconv("UTF-8", "TIS-620", $input_text);
file_put_contents($input_filename, $input_text_tis620);
system("C:\AppServ\www\swath < $input_filename > $output_filename");
$raw = file_get_contents($output_filename);
$raw_utf8 = iconv("TIS-620", "UTF-8", $raw);
unlink($input_filename);
unlink($output_filename);
return preg_split('/\|/', $raw_utf8);
}
if($_REQUEST['input_text']) {
$output = swath($_REQUEST['input_text']);
print implode("<BR>", $output);
file_put_contents("C:\AppServ\www\swathf\outputnews.txt",implode ($output ,"\r\n"));
}
?>
Tag : PHP
|
|
|
|
|
|
Date :
2012-05-02 12:11:15 |
By :
Butterney |
View :
1023 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
swath($_POST["input_text"]);
|
|
|
|
|
Date :
2012-05-03 06:37:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swath($_POST["input_text"]);
แก้ตรงนี้แล้วตรง "input_text" เปลี่ยนเป็นชื่อไฟล์ที่เราต้องการเรียกใช้เลยหรอคะ
|
|
|
|
|
Date :
2012-05-03 12:11:34 |
By :
Butterney |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นชื่อ ของ taxtfile อะครับ ตั่งไว้ว่าอะไร
|
|
|
|
|
Date :
2012-05-03 12:44:05 |
By :
showroom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swath($_POST["C:\AppServ\www\swathf\news.txt"]); ใส่ path ลงไปแบบนี้ได้เลยเลยใช่ไหมคะ
|
|
|
|
|
Date :
2012-05-03 14:33:23 |
By :
Butterney |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้เลยคะ เหมือนข้อมูลใน textfile มันยังไม่เข้าไปในฟังก์ชันอ่ะคะ รบกวนพี่ ๆ ช่วยดูให้หน่อยนะคะ ขอบคุณคะ
|
|
|
|
|
Date :
2012-05-15 12:32:41 |
By :
Butterney |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|