发布时间:2015-05-27 19:26:13作者:知识屋
[php]
<?php
$path = dirname(__FILE__);
scandDir($path);
function bomtoutf8($filename)
{
$ef = 239;
$bb = 187;
$bf = 191;
if (is_dir($filename)) return;
$fd = fopen($filename, "rb");
if (!$fd) exit($filename);
$headers = fread($fd, 3);
fclose($fd);
if (strlen($headers) < 3) return;
if (ord($headers[0]) == $ef &&
ord($headers[1]) == $bb &&
ord($headers[2]) == $bf
) {
echo $filename, "/n";
$content = file_get_contents($filename);
if (!$content) {
exit("file get contents failed");
}
$len = strlen($content);
$content = substr($content, 3);
if ($content === false && $len!=3) {
exit("sbustr failed");
} else if ($content === false && $len==3){
$content = "";
}
$ret = file_put_contents($filename, $content, LOCK_EX);
if ($ret === false) {
exit("file put contents failed");
}
echo "successed file ", $filename, "/n";
}
}
function scandDir($path)
{
$d = dir($path);
if (!$d) exit("dir failed");
while (false !== ($entry = $d->read())) {
if ($entry == '.' || $entry == '..') {
continue;
}
$filename = $path . DIRECTORY_SEPARATOR . $entry;
// echo $filename, "/n";
if (is_dir($filename)) {
scandDir($filename);
} else {
bomtoutf8($filename);
}
}
}
<?php
$path = dirname(__FILE__);
scandDir($path);
function bomtoutf8($filename)
{
$ef = 239;
$bb = 187;
$bf = 191;
if (is_dir($filename)) return;
$fd = fopen($filename, "rb");
if (!$fd) exit($filename);
$headers = fread($fd, 3);
fclose($fd);
if (strlen($headers) < 3) return;
if (ord($headers[0]) == $ef &&
ord($headers[1]) == $bb &&
ord($headers[2]) == $bf
) {
echo $filename, "/n";
$content = file_get_contents($filename);
if (!$content) {
exit("file get contents failed");
}
$len = strlen($content);
$content = substr($content, 3);
if ($content === false && $len!=3) {
exit("sbustr failed");
} else if ($content === false && $len==3){
$content = "";
}
$ret = file_put_contents($filename, $content, LOCK_EX);
if ($ret === false) {
exit("file put contents failed");
}
echo "successed file ", $filename, "/n";
}
}
function scandDir($path)
{
$d = dir($path);
if (!$d) exit("dir failed");
while (false !== ($entry = $d->read())) {
if ($entry == '.' || $entry == '..') {
continue;
}
$filename = $path . DIRECTORY_SEPARATOR . $entry;
// echo $filename, "/n";
if (is_dir($filename)) {
scandDir($filename);
} else {
bomtoutf8($filename);
}
}
}
友情提示:代码是批量处理目录下(包括子目录)的所有带BOM文件,使用前需备份
如何对PHP文件进行加密方法 PHP实现加密的几种方式介绍
php生成圆角图片的方法 电脑中php怎么生成圆角图片教程
用PHP构建一个留言本方法步骤 php怎么实现留言板功能
php中三元运算符用法 php中的三元运算符使用说明
php文件如何怎么打开方式介绍 php文件用什么打开方法
PHP怎么插入数据库方法步骤 php编程怎么导入数据库教程
如何安装PHPstorm并配置方法教程 phpstorm安装后要进行哪些配置
PHP 获取远程文件大小的3种解决方法 如何用PHP获取远程大文件的大小
20个实用PHP实例代码 php接口开发实例代码详细介绍
如何架设PHP服务器方法步骤 怎么搭建php服务器简单教程