在php中从txt文件获取值
我知道这对你来说很容易,但对我来说不是这样:)
我需要得到txt文件的内容“file.txt”
file.txt文件是
word1 word2 word3
每一行放在一个新的行中,或者可以是word1, word2, word3,
或者"word1", "word2", "word3",
以较容易的方式执行。
我有config.php
文件,我需要它来读取file.txt
所有和每个单词,然后处理为$value
,然后由script.php
处理,该文件处理$value
作为file.txt
中所有单词的单个单词
谢谢
假设你的file.php是as
<?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
}
?>
foreach($lines as $value)
$words= explode("t",$value);`
每个使用内部爆炸
干得好。 如果您需要关于代码的解释,请告诉我
<?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
链接地址: http://www.djcxy.com/p/96563.html