求一段php调用txt文件数据并赋值的代码
首页文件 index.html
引用文件:./txt/pan.txt中的第三行:false或者yes
在index.html中做一个if..else的判断语句,变量$do的值是pan.txt的第三行中的数值;
这个php该怎么写呢?
------解决方案--------------------<?php
$myFile = "./txt/pan.txt";
$lines = file($myFile);//文件放入数组中
$do = $lines[3]; //line 3
if ($do == "false") {
echo "false, do ..."; //false的做的事情
} elseif ($do == "yes") {
echo "yes, do...."; //yes的时候做的事情
} else {
echo "not supported"; //其他值
}
?>
------解决方案--------------------写错了,刚刚是line 4
<?php
$myFile = "./txt/pan.txt";
$lines = file($myFile);//文件放入数组中
$do = $lines[2]; //line 3
if ($do == "false") {
echo "false, do ..."; //false的做的事情
} elseif ($do == "yes") {
echo "yes, do...."; //yes的时候做的事情
} else {
echo "not supported"; //其他值
}
?>
------解决方案--------------------你的这个是模板语言?
如果知识输出,你修改一下,直接echo "<ul>"就好了,false的情况下不做处理,都不用判断,就判断是否为yes