• 大小: 0.91KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: PHP
  • 标签: php  

资源简介

PHP网站出现乱码 直接放在网站根目录 访问此文件即可

会把所有 带BOM格式的文件 转为无 BOM 的文件

解决乱码问题

资源截图

代码片段和文件信息

if (isset($_GET[‘dir‘])){ //config the basedir 
   $basedir=$_GET[‘dir‘]; 
 }else{ 
   $basedir = ‘.‘; 
 } 
   
 $auto = 1; 
   
 checkdir($basedir); 
   
 function checkdir($basedir){ 
   if ($dh = opendir($basedir)) { 
     while (($file = readdir($dh)) !== false) { 
       if ($file != ‘.‘ && $file != ‘..‘){ 
         if (!is_dir($basedir.“/“.$file)) { 
           echo “filename
 $basedir/$file “.checkBOM(“$basedir/$file“).“ 
“; 
         }else{ 
           $dirname = $basedir.“/“.$file; 
           checkdir($dirname); 
         } 
       } 
     } 
   closedir($dh); 
   } 
 } 
   
 function checkBOM ($filename) { 
   global $auto; 
   $contents = file_get_contents($filename); 
   $charset[1] = substr($contents 0 1); 
   $charset[2] = substr($c

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         114  2016-01-19 11:04  说明.txt
     文件        1435  2015-12-23 10:37  Code.php

评论

共有 条评论