How to remove php bom
How to remove php bom: 1. Find the PHP root directory; 2. Put the "function checkBOM($filename){...}" and other codes in the root directory, and run it through the browser to access it. Can.
#The operating environment of this article: Windows 7 system, PHP version 7.4, Dell G3 computer.
How to remove php bom?
Simple method to remove BOM in PHP
/* +------------------------------------------------------------------------------------------- + Title : 去掉BOM头方法 + Author : hello_sgw + Version : V1.0.0.1 + Initial-Time : 2017-08-12 15:18 + Last-time : 2017-08-12 16:01 + Desc : +------------------------------------------------------------------------------------------- */
When I called the interface, because I used the encapsulation method provided by the other party, an error kept displaying when outputting a set of data. Finally, I thought of the possibility The method given by the other party contained coding issues (with BOM header), so I searched online for a method to detect BOM and could remove it and regenerate a new file. After using it, the data can be displayed normally.
What is the BOM header?
BOM --Byte Order Mark, the Chinese name is translated as "byte order mark". In a utf-8 encoded file, the BOM is at the head of the file and occupies three bytes to mark the file. It belongs to utf-8 encoding.
Now there are many softwares that recognize BOM header, but there are still some that cannot recognize BOM header. For example, PHP cannot recognize BOM header. This is also done after editing the UTF-8 encoding with Notepad. The reason why something goes wrong.
Solution:
# 这里代码为PHP方式去除当前目录及字目录所有文件BOM信息,只要将此代码文件放到根目录下,然后浏览器运行访问就可以了 <?php if (isset($_GET['dir'])) { //设置文件目录 $basedir = $_GET['dir']; } else { $basedir = '.'; } $auto = 1; checkdir($basedir); function checkdir($basedir) { if ($dh = opendir($basedir)) { while (($file = readdir($dh)) !== false) { if ($file != '.' && $file != '..') { if (!is_dir($basedir . "/" . $file)) { echo "filename: $basedir/$file " . checkBOM("$basedir/$file") . " <br>"; } 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 ("<font color='red'>BOM found, automatically removed.</font>"); } else { return ("<font color='red'>BOM found.</font>"); } } else return ("BOM Not Found."); } function rewrite($filename, $data) { $filenum = fopen($filename, "w"); flock($filenum, LOCK_EX); fwrite($filenum, $data); fclose($filenum); }
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to remove php bom. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are 5 DOM objects including "document", "element", "Node", "Event" and "Window"; 2. "window", "navigator", "location" and "history" and "screen" and other 5 BOM objects.

BOM and DOM are different in terms of role and function, relationship with JavaScript, interdependence, compatibility of different browsers, and security considerations. Detailed introduction: 1. Role and function. The main function of BOM is to operate the browser window. It provides direct access and control of the browser window. The main function of DOM is to convert the web document into an object tree, allowing developers to Use this object tree to obtain and modify the elements and content of the web page; 2. Relationship with JavaScript, etc.

DOM enables dynamic access and updates to web page content, while BOM provides APIs for interacting with browser windows, including controlling browser behavior and obtaining information about the browser and user environment. DOM is mainly used to operate web page content, while BOM is mainly used to operate browser windows and interact with browsers. The two together form an important foundation in Web front-end development, providing developers with rich methods to control and operate web pages and browsers to achieve strong interactivity, Web applications with good user experience.

The meaning and function of PHPbom In PHP programming, BOM (ByteOrderMark) is a special character sequence used to identify the encoding method and byte order of the file. The BOM is usually inserted at the beginning of the file to allow the parser to identify the encoding, especially for some encoding formats that do not start with ASCII encoding, such as UTF-8. BOM has different functions in different encoding formats. The following will specifically explore the meaning and function of BOM in PHP, and combine it with code examples to add

The definition of PHPBOM and its application scenarios BOM (ByteOrderMark), which is the byte order mark, is a special character sequence used to mark the text encoding format. In PHP development, BOM is usually used to solve some specific coding problems. In some cases, if BOM is not handled correctly, it may cause the page to display garbled characters or other problems. This article will introduce the definition of PHPBOM and its application scenarios in detail, and attach specific code examples to give readers a better understanding. 1. PH

Methods to remove BOM from PHP code: 1. Use the "function clearbom($contents){...}" method to remove the BOM header in the text; 2. Use the "function checkBOM ($filename) {...}" method to detect and Remove the BOM header; 3. Use the "function SearchBOM($string) {...}" method to search whether the current file has a BOM and remove it.

BOM is the browser object model, and DOM is the document object model. BOM is a model used to describe browser windows and various objects provided by the browser. It is the core component of the browser. BOM can access and operate objects such as browser windows and frames. DOM provides a set of APIs that enable developers to access and manipulate elements and attributes in documents through scripting languages. Its core concepts include nodes, elements, attributes, text, etc. The root node of the DOM tree is the document object, through which Access the entire document's content.

The core objects of bom and dom are window objects and document objects respectively. The window object represents the browser window and provides a series of methods and properties to operate the browser window. The window object can be accessed and controlled through JavaScript code, and it provides some commonly used methods. The document object represents the document of the current web page. It provides a series of methods and attributes to operate the content of the web page. Through the document object, you can access and operate various elements in the web page.
