tltemplates/txtfile

一个用于快速读取和写入txt文件的类

1.1.2 2021-03-27 02:55 UTC

This package is auto-updated.

Last update: 2024-09-27 10:37:24 UTC


README

一个小型PHP库,用于帮助读取和写入文本文件中的数据

用法

创建处理文件的类

//access the file
$file = new TxtFile('text.txt'); 
//access the file and create if it does not exist
$file = new TxtFile('text.txt', true); 

读取文件内容

//store result in an array
$array = $file->readAllAsArray();
//store result in a string
$content = $file->readAllAsString();

更多关于TL Dev Tech的信息,请访问TL Dev Tech