|
|
|
สอบถามการส่งค่าที่อยู่ใน textfile ไปยังฟังก์ชัน swath หน่อยคะ เพื่อนำข้อมูลใน textfile ไปตัดคำในโปรแกรม swath |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & Readfile</title>
</head>
<body>
<?
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/swathf/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);
}
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'r');
if ($objFopen) {
while (!feof($objFopen)) {
$file[] = swath(fgets($objFopen, 4096));
}
fclose($objFopen);
}
print_r($file);
?>
</body>
</html>
|
|
|
|
|
Date :
2012-05-20 06:45:37 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|