mirror of
https://github.com/ufilesdk-dev/ufile-phpsdk.git
synced 2025-04-05 19:41:58 +08:00
删除文件中的BOM 头
This commit is contained in:
parent
fb8cda063c
commit
8498d2f80b
53
v1/del_bom_header.php
Normal file
53
v1/del_bom_header.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
if (isset($_GET['dir'])) { //设置文件目录
|
||||
$basedir = $_GET['dir'];
|
||||
}else{
|
||||
$basedir = '.';
|
||||
}
|
||||
$auto = true; //定义是否去掉文件中的BOM头,如果为 false 则只检测是否含有 BOM 头
|
||||
checkdir($basedir);//检测目录
|
||||
function checkdir($basedir){
|
||||
if ($dh = opendir($basedir)) {
|
||||
while (($file = readdir($dh)) !== false) {
|
||||
if($file{0} == '.'){
|
||||
continue;
|
||||
}
|
||||
if($file != '.' && $file != '..'){
|
||||
if (!is_dir($basedir."/".$file)) {
|
||||
echo "filename: $basedir/$file ".checkBOM("$basedir/$file")." <br>";
|
||||
}else{
|
||||
$dirname = $basedir."/".$file;
|
||||
checkdir($dirname);
|
||||
}
|
||||
}
|
||||
}
|
||||
closedir($dh);
|
||||
}
|
||||
}
|
||||
//检查文件是否有BOM头,通过 全局变量 $auto 来控制是否删除文件中的BOM头
|
||||
function checkBOM ($filename) {
|
||||
global $auto;
|
||||
$contents = file_get_contents($filename);
|
||||
$charset[1] = substr($contents, 0, 1);
|
||||
$charset[2] = substr($contents, 1, 1);
|
||||
$charset[3] = substr($contents, 2, 1);
|
||||
if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) {
|
||||
if ($auto) {
|
||||
$rest = substr($contents, 3);
|
||||
rewrite ($filename, $rest);
|
||||
return ("<font color=red>BOM found, automatically removed.</font>");
|
||||
} else {
|
||||
return ("<font color=red>BOM found.</font>");
|
||||
}
|
||||
}else{
|
||||
return ("BOM Not Found.");
|
||||
}
|
||||
}
|
||||
//重写文件,以达到删除BOM头的目的
|
||||
function rewrite ($filename, $data) {
|
||||
$filenum = fopen($filename, "w");
|
||||
flock($filenum, LOCK_EX);
|
||||
fwrite($filenum, $data);
|
||||
fclose($filenum);
|
||||
}
|
||||
?>
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
require_once("../ucloud/proxy.php");
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
global $SDK_VER;
|
||||
global $UCLOUD_PROXY_SUFFIX;
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
require_once("utils.php");
|
||||
require_once("conf.php");
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
require_once("conf.php");
|
||||
require_once("utils.php");
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
global $mimetype_complete_map;
|
||||
$mimetype_complete_map = array(
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
require_once("mimetypes.php");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user