Skip to content

Instantly share code, notes, and snippets.

View hirbod's full-sized avatar
🌴
On vacation

Hirbod hirbod

🌴
On vacation
View GitHub Profile
@hirbod
hirbod / bom_check.php
Created May 11, 2012 15:47 — forked from jdlx/bom_check.php
PHP script to recursively check php files for BOM (ByteOrderMark)
<?php
/**
* @author Atanas Vasilev
* @link http://pastebin.com/dHbqjUNy
*/
define('STR_BOM', "\xEF\xBB\xBF");
$file = null;
$directory = getcwd();