Quickly remove the BOM method in the whole site program file encoding-PHP source code

Source: Internet
Author: User
The BOM method in the whole station program file encoding is quickly removed. Today, it is found that this method is also sometimes. after The Independent ip space is purchased on the hosts, the website program specified by the device will be logged on to the background after the device is completed, the verification code is not displayed. after the space is initialized several times and the device is reinstalled, it is preliminarily determined that there are bom files in the website program file. the common one is UTF-8, which is UTF-8 + bom, so problems have emerged. But now you don't know which file is actually? What should I do?
This method will work in the future!

First, create a local file named RemoveBom. php.
Next, copy and paste the following code into the file named above, save it, upload it to the root directory of the website, and then run the file directly!
The RemoveBom. php code is as follows:

 ";} 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, automatically removed. _ http://host.fbi1.net ");} 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) ;}?>

The above code is used to remove BOM! The actual effect is exceptionally good. this problem can be solved in minutes.

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.