关于数组:从php中的txt文件中获取值

get values from txt file in php

我知道这对你来说很容易但不适合我:)

我需要获取txt文件"file.txt"的内容

file.txt是的

word1
word2
word3

每个都在一个新行中,或者可以作为word1, word2, word3,"word1","word2","word3",更容易做到。

我有config.php文件,我需要它来读取file.txt中的所有单词并处理为$value然后由script.php处理,其中$value处理$value作为

谢谢


假设你的file.php是

1
2
3
<?php
    $words = array("word1","word2","word3");
 ?>

在另一个php文件中,比如read.php,你可以访问file.php作为

1
2
3
4
5
6
7
8
9
10
<?php

include"file.php";
print_r($words);
foreach($words as $value){
    echo $value;
//do whatever you want to do with each word
}

?>


干得好。 如果您需要有关代码的说明,请与我们联系

1
2
3
4
5
6
7
8
9
10
<?php
$file ="filename.txt";
$content = file_get_contents($file);
$value ="";
foreach (explode("
"
, $content) as $line) {
    // line is"word1","word2","word3", etc.
    $value .= $line ."";
}
$value = trim($value); // Remove trailing space


1
2
3
foreach($lines as $value)

 $words= explode("\t",$value);`

在每个内部使用爆炸