发布网友 发布时间:2022-04-23 21:26
共2个回答
热心网友 时间:2023-10-07 03:31
<?
if(!function_exists('file_get_contents')){ //如果系统没有file_get_contents()函数
function file_get_contents($file){ //自己写file_get_contents()函数
$fp = fopen($file,'r');
$content = fread($fp,filesize($file));
fclose($fp);
return $content;
}
}
$content=file_get_contents("文本.txt");
$arr=explode("|_|",$content);
for($i=1;$i<count($arr)-1;$i++){
$b=explode("||",$arr[$i]);
echo "<pre>";
print_r($b);//数组$b存的就是你要的数据,将之写入数据表就OK
echo "</pre>";
////这里添加数据库操作
}
?>
热心网友 时间:2023-10-07 03:31
你的文本格式,你的数据库设计都不拿来,我们怎么给你说啊。。。