标签: php判断txt文件是否为空
thumbnail

php判断txt文件是否为空

php判断txt文件是否为空 function istxt($txt) { $content = @file_get_contents($txt); if ($content === false) { echo '无法读取文……