加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
list.php 407 Bytes
一键复制 编辑 原始数据 按行查看 历史
15801575893 提交于 2021-11-20 15:52 . update list.php.
<?php
header('Content-Type: text/json;charset=UTF-8');
$dir=dirname(__FILE__);
$files = glob('./list/test.txt');
$result='';
foreach ($files as $file) {
$fsize=filesize($file);
$myfile = fopen($file, "r") or die("Unable to open file!");
$txt= fread($myfile,$fsize);
fclose($myfile);
$txt=$txt."\r\n";
$result=$result.$txt;
}
echo $result;
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化