Inhaltsverzeichnis
回复内容:
Heim Backend-Entwicklung PHP-Tutorial php pack导出数据倒excel表中文乱码问题

php pack导出数据倒excel表中文乱码问题

Jun 06, 2016 pm 08:06 PM
php

需要用php将数据导出倒excel表中,用的是php的pack函数将字符打包成二进制,然后写入Excel表格文件,英文字符导入正常,现在中文字符全部乱码了,不知道哪里设置的问题呢?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

<code><?php /**

 * Simple excel writer class with no external dependencies, drop it in and have fun

 * @author Matt Nowack

 * @link https://gist.github.com/ihumanable/929039/edit

 * @license Unlicensed

 * @version 1.0

 */

class Excel {

  private $col;

  private $row;

  private $data;

  private $title;

   

  /**

   * Safely encode a string for use as a filename

   * @param string $title The title to use for the file

   * @return string The file safe title

   */

  static function filename($title) {

    $result = strtolower(trim($title));

    $result = str_replace("'", '', $result);

    $result = preg_replace('#[^a-z0-9_]+#', '-', $result);

    $result = preg_replace('#\-{2,}#', '-', $result);

    return preg_replace('#(^\-+|\-+$)#D', '', $result);

  }

   

  /**

   * Builds a new Excel Spreadsheet object

   * @return Excel The Spreadsheet

   */

  function __construct($title) {

    $this->title = $title;

    $this->col = 0;

    $this->row = 0;

    $this->data = '';

    $this->bofMarker();

  }

   

  /**

   * Transmits the proper headers to cause a download to occur and to identify the file properly

   * @return nothing

   */

  function headers() {

    header("Content-Type: application/force-download");

    header("Content-Type: application/octet-stream");

    header("Content-Type: application/download");

    header("Content-Type: application/vnd.ms-excel; charset=iso-8859-1");

    header("Content-Disposition: attachment;filename=" . Excel::filename($this->title) . ".xls ");

    header("Content-Transfer-Encoding: binary ");

  }

   

  function send() {

    $this->eofMarker();

    // $this->headers();

    echo $this->data;

  }

   

  /**

   * Writes the Excel Beginning of File marker

   * @see pack()

   * @return nothing

   */

  private function bofMarker() {

    $this->data .= pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0); 

  }

   

  /**

   * Writes the Excel End of File marker

   * @see pack()

   * @return nothing

   */

  private function eofMarker() {

    $this->data .= pack("ss", 0x0A, 0x00);

  }

   

  /**

   * Moves internal cursor left by the amount specified

   * @param optional integer $amount The amount to move left by, defaults to 1

   * @return integer The current column after the move

   */

  function left($amount = 1) {

    $this->col -= $amount;

    if($this->col col = 0;

    }

    return $this->col;

  }

   

  /**

   * Moves internal cursor right by the amount specified

   * @param optional integer $amount The amount to move right by, defaults to 1

   * @return integer The current column after the move

   */

  function right($amount = 1) {

    $this->col += $amount;

    return $this->col;

  }

   

  /**

   * Moves internal cursor up by amount

   * @param optional integer $amount The amount to move up by, defaults to 1

   * @return integer The current row after the move

   */ 

  function up($amount = 1) {

    $this->row -= $amount;

    if($this->row row = 0;

    }

    return $this->row;

  }

   

  /**

   * Moves internal cursor down by amount

   * @param optional integer $amount The amount to move down by, defaults to 1

   * @return integer The current row after the move

   */

  function down($amount = 1) {

    $this->row += $amount;

    return $this->row;

  }

   

  /**

   * Moves internal cursor to the top of the page, row = 0

   * @return nothing

   */

  function top() {

    $this->row = 0;

  }

   

  /**

   * Moves internal cursor all the way left, col = 0

   * @return nothing

   */

  function home() {

    $this->col = 0;

  }

   

  /**

   * Writes a number to the Excel Spreadsheet

   * @see pack()

   * @param integer $value The value to write out

   * @return nothing

   */

  function number($value) {

    $this->data .= pack("sssss", 0x203, 14, $this->row, $this->col, 0x0);

    $this->data .= pack("d", $value);

  }

   

  /**

   * Writes a string (or label) to the Excel Spreadsheet

   * @see pack()

   * @param string $value The value to write out

   * @return nothing

   */

  function label($value) {

    $length = strlen($value);

    // ob_iconv_handler()

    // $value = iconv('UTF-8','gbk',$value);

    // file_put_contents('a.txt', 'test:    '.)

    $this->data .= pack("ssssss", 0x204, 8 + $length, $this->row, $this->col, 0x0, $length);

    $this->data .= $value;

  }

}</code>

Nach dem Login kopieren
Nach dem Login kopieren

下面是我的调用测试代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

<code><?php // iconv_set_encoding('output_encoding','gbk');

    require_once("excel.php");

 

    $xls = new Excel('Report');

 

    $colors = array(

        array("red", "blue", "green", "yellow", "orange", "purple"),

        array('过以上','以','c','过','目录','f')

    );

 

    foreach ($colors as $key => $value) {

        $xls->home();

        foreach ($value as  $row) {

          // $xls->home();

          $xls->label($row);

          $xls->right();

           // $xls->label($row);

        }

        $xls->down();

    }

     

    ob_start();

    $xls->send();

    $data = ob_get_clean();

    file_put_contents(__DIR__ .'/report.xls', $data);

</code>

Nach dem Login kopieren
Nach dem Login kopieren

回复内容:

需要用php将数据导出倒excel表中,用的是php的pack函数将字符打包成二进制,然后写入Excel表格文件,英文字符导入正常,现在中文字符全部乱码了,不知道哪里设置的问题呢?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

<code><?php /**

 * Simple excel writer class with no external dependencies, drop it in and have fun

 * @author Matt Nowack

 * @link https://gist.github.com/ihumanable/929039/edit

 * @license Unlicensed

 * @version 1.0

 */

class Excel {

  private $col;

  private $row;

  private $data;

  private $title;

   

  /**

   * Safely encode a string for use as a filename

   * @param string $title The title to use for the file

   * @return string The file safe title

   */

  static function filename($title) {

    $result = strtolower(trim($title));

    $result = str_replace("'", '', $result);

    $result = preg_replace('#[^a-z0-9_]+#', '-', $result);

    $result = preg_replace('#\-{2,}#', '-', $result);

    return preg_replace('#(^\-+|\-+$)#D', '', $result);

  }

   

  /**

   * Builds a new Excel Spreadsheet object

   * @return Excel The Spreadsheet

   */

  function __construct($title) {

    $this->title = $title;

    $this->col = 0;

    $this->row = 0;

    $this->data = '';

    $this->bofMarker();

  }

   

  /**

   * Transmits the proper headers to cause a download to occur and to identify the file properly

   * @return nothing

   */

  function headers() {

    header("Content-Type: application/force-download");

    header("Content-Type: application/octet-stream");

    header("Content-Type: application/download");

    header("Content-Type: application/vnd.ms-excel; charset=iso-8859-1");

    header("Content-Disposition: attachment;filename=" . Excel::filename($this->title) . ".xls ");

    header("Content-Transfer-Encoding: binary ");

  }

   

  function send() {

    $this->eofMarker();

    // $this->headers();

    echo $this->data;

  }

   

  /**

   * Writes the Excel Beginning of File marker

   * @see pack()

   * @return nothing

   */

  private function bofMarker() {

    $this->data .= pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0); 

  }

   

  /**

   * Writes the Excel End of File marker

   * @see pack()

   * @return nothing

   */

  private function eofMarker() {

    $this->data .= pack("ss", 0x0A, 0x00);

  }

   

  /**

   * Moves internal cursor left by the amount specified

   * @param optional integer $amount The amount to move left by, defaults to 1

   * @return integer The current column after the move

   */

  function left($amount = 1) {

    $this->col -= $amount;

    if($this->col col = 0;

    }

    return $this->col;

  }

   

  /**

   * Moves internal cursor right by the amount specified

   * @param optional integer $amount The amount to move right by, defaults to 1

   * @return integer The current column after the move

   */

  function right($amount = 1) {

    $this->col += $amount;

    return $this->col;

  }

   

  /**

   * Moves internal cursor up by amount

   * @param optional integer $amount The amount to move up by, defaults to 1

   * @return integer The current row after the move

   */ 

  function up($amount = 1) {

    $this->row -= $amount;

    if($this->row row = 0;

    }

    return $this->row;

  }

   

  /**

   * Moves internal cursor down by amount

   * @param optional integer $amount The amount to move down by, defaults to 1

   * @return integer The current row after the move

   */

  function down($amount = 1) {

    $this->row += $amount;

    return $this->row;

  }

   

  /**

   * Moves internal cursor to the top of the page, row = 0

   * @return nothing

   */

  function top() {

    $this->row = 0;

  }

   

  /**

   * Moves internal cursor all the way left, col = 0

   * @return nothing

   */

  function home() {

    $this->col = 0;

  }

   

  /**

   * Writes a number to the Excel Spreadsheet

   * @see pack()

   * @param integer $value The value to write out

   * @return nothing

   */

  function number($value) {

    $this->data .= pack("sssss", 0x203, 14, $this->row, $this->col, 0x0);

    $this->data .= pack("d", $value);

  }

   

  /**

   * Writes a string (or label) to the Excel Spreadsheet

   * @see pack()

   * @param string $value The value to write out

   * @return nothing

   */

  function label($value) {

    $length = strlen($value);

    // ob_iconv_handler()

    // $value = iconv('UTF-8','gbk',$value);

    // file_put_contents('a.txt', 'test:    '.)

    $this->data .= pack("ssssss", 0x204, 8 + $length, $this->row, $this->col, 0x0, $length);

    $this->data .= $value;

  }

}</code>

Nach dem Login kopieren
Nach dem Login kopieren

下面是我的调用测试代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

<code><?php // iconv_set_encoding('output_encoding','gbk');

    require_once("excel.php");

 

    $xls = new Excel('Report');

 

    $colors = array(

        array("red", "blue", "green", "yellow", "orange", "purple"),

        array('过以上','以','c','过','目录','f')

    );

 

    foreach ($colors as $key => $value) {

        $xls->home();

        foreach ($value as  $row) {

          // $xls->home();

          $xls->label($row);

          $xls->right();

           // $xls->label($row);

        }

        $xls->down();

    }

     

    ob_start();

    $xls->send();

    $data = ob_get_clean();

    file_put_contents(__DIR__ .'/report.xls', $data);

</code>

Nach dem Login kopieren
Nach dem Login kopieren

你中文是什么编码的啊?Excel默认是GB2312的。如果UTF-8就乱码了。

解决办法:要么转成GB2312再写进去。
要么在最后先输出BOM头

1

2

3

4

ob_start();

$xls->send();

$data = "\xEF\xBB\xBF" . ob_get_clean();

file_put_contents(__DIR__ .'/report.xls', $data);

Nach dem Login kopieren
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
2 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
Repo: Wie man Teamkollegen wiederbelebt
1 Monate vor By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Abenteuer: Wie man riesige Samen bekommt
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

CakePHP-Projektkonfiguration CakePHP-Projektkonfiguration Sep 10, 2024 pm 05:25 PM

In diesem Kapitel werden wir die Umgebungsvariablen, die allgemeine Konfiguration, die Datenbankkonfiguration und die E-Mail-Konfiguration in CakePHP verstehen.

PHP 8.4 Installations- und Upgrade-Anleitung für Ubuntu und Debian PHP 8.4 Installations- und Upgrade-Anleitung für Ubuntu und Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 bringt mehrere neue Funktionen, Sicherheitsverbesserungen und Leistungsverbesserungen mit einer beträchtlichen Menge an veralteten und entfernten Funktionen. In dieser Anleitung wird erklärt, wie Sie PHP 8.4 installieren oder auf PHP 8.4 auf Ubuntu, Debian oder deren Derivaten aktualisieren. Obwohl es möglich ist, PHP aus dem Quellcode zu kompilieren, ist die Installation aus einem APT-Repository wie unten erläutert oft schneller und sicherer, da diese Repositorys in Zukunft die neuesten Fehlerbehebungen und Sicherheitsupdates bereitstellen.

CakePHP Datum und Uhrzeit CakePHP Datum und Uhrzeit Sep 10, 2024 pm 05:27 PM

Um in cakephp4 mit Datum und Uhrzeit zu arbeiten, verwenden wir die verfügbare FrozenTime-Klasse.

CakePHP-Datei hochladen CakePHP-Datei hochladen Sep 10, 2024 pm 05:27 PM

Um am Datei-Upload zu arbeiten, verwenden wir den Formular-Helfer. Hier ist ein Beispiel für den Datei-Upload.

CakePHP-Routing CakePHP-Routing Sep 10, 2024 pm 05:25 PM

In diesem Kapitel lernen wir die folgenden Themen im Zusammenhang mit dem Routing kennen.

Besprechen Sie CakePHP Besprechen Sie CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP ist ein Open-Source-Framework für PHP. Es soll die Entwicklung, Bereitstellung und Wartung von Anwendungen erheblich vereinfachen. CakePHP basiert auf einer MVC-ähnlichen Architektur, die sowohl leistungsstark als auch leicht zu verstehen ist. Modelle, Ansichten und Controller gu

So richten Sie Visual Studio-Code (VS-Code) für die PHP-Entwicklung ein So richten Sie Visual Studio-Code (VS-Code) für die PHP-Entwicklung ein Dec 20, 2024 am 11:31 AM

Visual Studio Code, auch bekannt als VS Code, ist ein kostenloser Quellcode-Editor – oder eine integrierte Entwicklungsumgebung (IDE) –, die für alle gängigen Betriebssysteme verfügbar ist. Mit einer großen Sammlung von Erweiterungen für viele Programmiersprachen kann VS Code c

CakePHP erstellt Validatoren CakePHP erstellt Validatoren Sep 10, 2024 pm 05:26 PM

Der Validator kann durch Hinzufügen der folgenden zwei Zeilen im Controller erstellt werden.

See all articles