Home > Backend Development > PHP Problem > How to solve the php doc garbled problem

How to solve the php doc garbled problem

藏色散人
Release: 2023-03-06 12:46:01
Original
1913 people have browsed it

The solution to the garbled php doc: first open the corresponding code file; then add the statement "ob_end_clean()" before the Header.

How to solve the php doc garbled problem

Recommended: "PHP Video Tutorial"

PHP Download DOC Garbled Code

Recently done A system needs to download the doc file

After the previous code download is completed, it is always garbled when opened...

Google has not found a solution for a long time

Finally got it later

Must be cleared before Header, that is, ob_end_clean()

$file_size = filesize($logName);
        ob_end_clean();
        header("Content-type:application/octet-stream");
        header("Accept-Ranges:bytes");
        header("Accept-Length:$file_size");
        header("Content-Disposition:attachment;filename=" . $fileName);
        $fp = fopen($logName, "r");
        $buffer_size = 1024;
        $cur_pos = 0;
        while (!feof($fp) && $file_size - $cur_pos > $buffer_size) {
            $buffer = fread($fp, $buffer_size);
            echo$buffer;
            $cur_pos+=$buffer_size;
        }
        $buffer = fread($fp, $file_size - $cur_pos);
        echo$buffer;
        fclose($fp);
        return true;
Copy after login

The above is the detailed content of How to solve the php doc garbled problem. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template