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

php怎样对带|分割符的文本文件进行读取

发布网友 发布时间:2022-04-23 21:26

我来回答

4个回答

热心网友 时间:2023-05-02 14:11

  1、自己设定分割符~

  2、程序读到分割符自动识别 并把已识别的放到一个数组里

  直接在你的代码上修改一下:

  Set FSO = Server.CreateObject( "scripting.filesystemobject ")

  Set Text_Stream = FSO.OpenTextFile(Server.MapPath( "line.txt "),1,true)

  i = 0

  Do Until Text_Stream.AtEndOfStream

  s = Text_Stream.ReadLine

  i = i + 1

  if i > = 4 then

  arr_s = split(s , ", ")

  if ubound(arr_s) <> 5 then

  response.write( "line " & i & " have error ")

  response.end()

  end if

  username = arr_s(0)

  userIP = arr_s(1)

  ... /*逐个得到需要的数据,然后写入数据库就可以,希望对你有帮助

  end if

  Loop

  

热心网友 时间:2023-05-02 14:12

$str='aa|bb|cc';
$arr=explode('|',$str);
var_mp($arr);
要那个访问数组就可以了,比如第2个 $arr[1],

热心网友 时间:2023-05-02 14:12

用explode分割成数组

热心网友 时间:2023-05-02 14:13

村里人都认识

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