从PHP中的txt文件中获取值

时间:2014-08-06 12:08:04

标签: php arrays file-get-contents

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

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

file.txt contetnt是

word1 word2 word3

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

我有config.php个文件,我需要它来阅读file.txt中的所有单词并处理为$value然后由script.php处理$value进程{{1} }}作为file.txt

中所有单词的单个单词

感谢

3 个答案:

答案 0 :(得分:1)

假设你的file.php为

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

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

<?php

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

?>

答案 1 :(得分:0)

foreach($lines as $value)

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

在每个

内使用爆炸

答案 2 :(得分:0)

你走了。如果您需要有关代码的说明,请与我们联系

<?php
$file = "filename.txt";
$content = file_get_contents($file);
$value = "";
foreach (explode("\n", $content) as $line) {
    // line is "word1", "word2", "word3", etc.
    $value .= $line . " ";
}
$value = trim($value); // Remove trailing space