PHP/Laravel-从文件中查找并读取键-值对
本文介绍了PHP/Laravel-从文件中查找并读取键-值对的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想存储一些文本信息,但我不想为此使用数据库。例如,有一个文件:
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;
}
这篇关于PHP/Laravel-从文件中查找并读取键-值对的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!