Delete list.php

This commit is contained in:
NC 2023-05-21 21:22:26 +08:00 committed by GitHub
parent 25a90bfdba
commit e84c84b9ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +0,0 @@
<?php
header(Content-Type: text/json;charset=UTF-8);
$dir=dirname(__FILE__);
$files = glob(./list/*.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;
?>