PHP/Laravel-从文件中查找并读取键-值对

2022-06-06 00:00:00 key-value php laravel file-read

我想存储一些文本信息,但我不想为此使用数据库。例如,有一个文件:

key1: some text information 1
key2: some text information 2
key3: another text information

我在想,使用PHP或Laravel从该文件中查找一个特定值的最短方法是什么?

我可以使用foreach(file('yourfile.txt') as $line) {}循环将文本行存储到数组中,然后找到具有特定键的行,但也许有更短或更好的方法来做到这一点。


解决方案

如果所有行的格式都相同([key]: [value]),则只需使用explode(": ", $line)获取值,然后将其重写为php数组;

// getData('yourfile.txt') returns an associative array
function getData($file) {
    $data = file($file);
    $returnArray = array()
    foreach($data as $line) {
        $explode = explode(": ", $line);
        $returnArray[$explode[0]] = $explode[1];
    }

    return $returnArray;
}

相关文章