如何编辑文本文件中一行的分割值?

我有一个文本文件,其中包含 1 行具有此设置的内容:

  • 2222;3333

两个值除以;.

我如何编辑"splitted[0]""splitted[1]"保存文件中的新值?

以下是我到目前为止所拥有的:

<?php

$file_handle = fopen("mytext.txt", "rw");

while (!feof($file_handle) )

{

    $line_of_text = fgets($file_handle);

    $parts = explode("\n", $line_of_text);


    foreach ($parts as $str)

    {

        $str_parts = explode(';', $str); // Split string by ; into an array

        array_shift($str_parts); // Remove first element

        echo current($str_parts)."\n"; // echo current element and newline

        // Same as $str_parts[0]

    }

}

fclose($file_handle);

?>


米琪卡哇伊
浏览 85回答 1
1回答

动漫人物

<?php$file = '2222;3333'; // that is your file$file = explode(';', $file); // This split your file with delimiter ";"foreach ($file as $newFile) {&nbsp; &nbsp; // Do whatever you want&nbsp; &nbsp; var_dump($newFile);}
打开App,查看更多内容
随时随地看视频慕课网APP