PHP 或者HTML 读取 txt 输出文字

2025-01-06 05:38:26
推荐回答(4个)
回答1:

PHP读取文件内容,并搜索里面是否含有特定内容,例子代码如下:

$f='a.txt';//文件名
$s='abc';//需要查找的内容
$file_str=file_get_contents($f);
if (strstr($s,$file_str)!==false) echo '有';
else echo '没有';
?>

回答2:

后弦自己创个ip.txt文件 ip.txt内容必须是这样:
10.10.10.1
102.3.3.3
1.1.1.1
25.65.36.8

$ip = "10.0.0.1";
$array = file('ip.txt');
foreach($array as $key => $val){
$newArray[] = trim($val);
}
if(in_array($ip, $newArray)){
echo 'yes';
}
else{
echo 'no';
}
?>

回答3:

PHP读取文件内容,并搜索里面是否含有特定内容,例子代码如下:
$f='a.txt';//文件名
$s='abc';//需要查找的内容
$file_str=file_get_contents($f);
if
(strstr($s,$file_str)!==false)
echo
'有';
else
echo
'没有';
?>

回答4:

$str
=
file_get_contents(1.txt);
$array
=
explode(",",$str);
操作
$array
将其顺序打乱

$newarr
=
impolde(",",$array
);
unlink(1.txt)
file_put_contents(1.txt,$newarr);