php输入文字存到数据库 php输入文字存到数据库的方法( 二 )


?php
//读取一行
$file = fopen("test.txt","r");
echo fgets($file);
fclose($file);
【php输入文字存到数据库 php输入文字存到数据库的方法】?
输出:
Hello, this is a test file.
?php
//循环读取每一行
$file = fopen("test.txt","r");
while(! feof($file)) {
echo $str = fgets($file). "br /";
//这里可以逐行的写入数据库中
//mysql_query("insert into table(id,contents) values(NULL,'".$str."')");
}
fclose($file);
?
输出:
Hello, this is a test file.
There are three lines here.
This is the last line.
关于php输入文字存到数据库和php输入文字存到数据库的方法的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

推荐阅读