我知道这对你来说很容易,但不适合我:)
我需要获取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
感谢
答案 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