|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/emp.outerorbittech.in/scripts/ | |
|
Path: /home2/outerorb/emp.outerorbittech.in/scripts/strip_bom.php
Size: 375 B
Permissions: 0666
<?php
$files = [
__DIR__ . '/../admin/attendance.php',
];
foreach ($files as $f) {
if (!file_exists($f)) { echo "Missing: $f\n"; continue; }
$c = file_get_contents($f);
if (substr($c,0,3) === "\xEF\xBB\xBF") {
file_put_contents($f, substr($c,3));
echo "Removed BOM from $f\n";
} else {
echo "No BOM in $f\n";
}
}