PHP batch removal of BOM header code sharing _ php instances

Source: Internet
Author: User
This article mainly introduces PHP code sharing by removing BOM headers in batches. This article provides the implementation code directly. The code is simple and easy to understand. For more information, see
<? Php/*** remove bom header information */header ("Content-Type: text/html; charset = UTF-8"); $ auto = 1; checkdir ("D: \ wamp \ www \ sales "); function checkdir ($ basedir) {if ($ dh = opendir ($ basedir )) {while ($ file = readdir ($ dh ))! = False) {if ($ file! = '.' & $ File! = '..') {If (! Is_dir ($ basedir. "/". $ file) {echo "file Name: $ 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 ($ contents, 1, 1 ); $ charset [3] = substr ($ contents, 2, 1); if (ord ($ charset [1]) = 239 & ord ($ charset [2]) = 187 & ord ($ charset [3]) = 191) {if ($ auto = 1) {$ rest = Substr ($ contents, 3); rewrite ($ filename, $ rest); return ("BOM found and deleted automatically ");} else {return ("BOM found") ;}} else return ("BOM not found");} function rewrite ($ filename, $ data) {$ filenum = fopen ($ filename, "w"); flock ($ filenum, LOCK_EX); fwrite ($ filenum, $ data); fclose ($ filenum);}?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.