- 论坛徽章:
- 0
|
最近刚开始研究php+mysql,写了个php去读txt文件,然后更新到mysql,但是最后一行会多出来一个0(txt文件里面没有多余的空行和空格),不知何解,还请高手指点?
谢了
php
<?php
$db = mysql_connect('127.0.0.1', 'root', '')or die('Failed to connect');
mysql_select_db('my_db', $db);
$fileHandle= @fopen("txt", "r");
if ($fileHandle)
{ while (!feof($fileHandle))
{
$rawLine = fgets($fileHandle, 4096);
$columns = preg_split("/\s+/", $rawLine);
mysql_query("INSERT INTO Persons (FirstName, LastName, Age)
VALUES ('$columns[0]', '$columns[1]', '$columns[2]')");
}
fclose($fileHandle);
}
?>
txt
12 34 56
9 8 7
mysql
| 12 | 34 | 56 |
| 9 | 8 | 7 |
| | | 0 | |
|