首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

php 解析 文本(字符串)

发布网友 发布时间: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

你的文本格式,你的数据库设计都不拿来,我们怎么给你说啊。。。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com