PHP 寫入和讀取TXT文字內容,第一行和第二行

2021-10-01 13:22:44 字數 1428 閱讀 4199

php 寫入和讀取txt文字內容,第一行和第二行

建立檔案:translate_lang_config.txt    和  translate.php

<?php

//寫入txt第一行或第二行

$robots = fopen("translate_lang_config.txt", "w") or die("unable to open file!");

$robotstxt = "en\n";

fwrite($robots, $robotstxt);

$robotstxt = "en";

fwrite($robots, $robotstxt);

fclose($robots);

$lang_content = getline('./translate_lang_config.txt',1); // 讀取translate_lang_config.txt檔案第幾行內容

echo $lang_content;

/** * 獲取txt文字指定行內容

* * @param $file 檔案路徑

* @param $line 行數

* @param $length 指定行返回內容長度

*/function getline($file, $line, $length = 4096)

fclose($handle);

}return $returntxt;

}?>

帶表單

<?php

header("access-control-allow-credentials: true");

header("access-control-allow-origin:*");

header("access-control-allow-methods:get,post");

session_start();

function getline($file, $line, $length = 4096)

fclose($handle);

}return trim($returntxt);

}$lang_content_1 = getline('translate_lang_config.txt',1);

$lang_content_2 = getline('translate_lang_config.txt',2);

$lang_content = getline('translate_lang_config.txt',2); // 讀取translate_lang_config.txt檔案第幾行內容

if(isset($_post['submit_lang']))

?>

<?php

session_write_close();

?>

java中讀取txt文字內容

public static listreadtxt string url else if strs 0 contains else if strs 0 contains for int i 1 i strs.length i else if strs 0 contains else if strs ...

c 讀取 excel檔案內容,寫入txt文件

1 winform 讀取excel文件 1 點選button按鈕,彈出上傳excel視窗 private void button headcompany click object sender,eventargs e buttonclick 總公司彙總 headcompany rowvalue,he...

Python 讀取寫入txt

讀取 read readline readlines with open txtdata.txt r as f 開啟檔案 data f.read read 一次性讀取文字內容,以字串形式返回 print data,type data with open txtdata.txt r as f 開啟檔案...