search
HomeBackend DevelopmentPHP TutorialClassic example of phpexcel exporting excel

  1. /**
  2. * phpexcel class library to export excel files
  3. * edit: bbs.it-home.org
  4. *
  5. */
  6. require 'php-excel.class.php' ;//Refer to Google's phpexcel class
  7. $result = mysql_query("SELECT * FROM dingdan"); //Query a data table and return a record set
  8. $data = array( 1 => array ('Order number', 'Line name'),);
  9. while($row = mysql_fetch_array($result)){//Loop the query results to EXCEL
  10. array_push($data,array($row["dd_bh"], $row ["dd_xianlu_name"]));
  11. }
  12. // generate file (constructor parameters are optional)
  13. $xls = new Excel_XML('GB2312', false, 'Financial Statement');
  14. $xls->addArray($data );
  15. $xls->generateXML('2011010320');
  16. ?>
Copy code

Attached is the phpexcel class php-excel.class.php file code.

  1. class Excel_XML

  2. {
  3. /**
  4. * Header (of document)
  5. * @var string
  6. */
  7. private $header = "/n";
  8. /**
  9. * Footer (of document)
  10. * @var string
  11. */
  12. private $footer = "
  13. ";
  14. /**
  15. * Lines to output in the excel document
  16. * @var array
  17. */
  18. private $lines = array();
  19. /**
  20. * Used encoding
  21. * @var string
  22. */
  23. private $sEncoding;
  24. /**
  25. * Convert variable types
  26. * @var boolean
  27. */
  28. private $bConvertTypes;
  29. /**
  30. * Worksheet title
  31. * @var string
  32. */
  33. private $sWorksheetTitle;
  34. /**
  35. * Constructor
  36. *
  37. * The constructor allows the setting of some additional
  38. * parameters so that the library may be configured to
  39. * one's needs.
  40. *
  41. * On converting types:
  42. * When set to true, the library tries to identify the type of
  43. * the variable value and set the field specification for Excel
  44. * accordingly. Be careful with article numbers or postcodes
  45. * starting with a '0' (zero)!
  46. *
  47. * @param string $sEncoding Encoding to be used (defaults to GBK)
  48. * @param boolean $bConvertTypes Convert variables to field specification
  49. * @param string $sWorksheetTitle Title for the worksheet
  50. */
  51. public function __construct($sEncoding = 'UTF-8', $bConvertTypes = false, $sWorksheetTitle = 'Table1')
  52. {
  53. $this->bConvertTypes = $bConvertTypes;
  54. $this->setEncoding($sEncoding);
  55. $this->setWorksheetTitle($sWorksheetTitle);
  56. }
  57. /**
  58. * Set encoding
  59. * @param string Encoding type to set
  60. */
  61. public function setEncoding($sEncoding)
  62. {
  63. $this->sEncoding = $sEncoding;
  64. }
  65. /**
  66. * Set worksheet title
  67. *
  68. * Strips out not allowed characters and trims the
  69. * title to a maximum length of 31.
  70. *
  71. * @param string $title Title for worksheet
  72. */
  73. public function setWorksheetTitle ($title)
  74. {
  75. $title = preg_replace ("/[///|:|//|/?|/*|/[|/]]/", "", $title);
  76. $title = substr ($title, 0, 31);
  77. $this->sWorksheetTitle = $title;
  78. }
  79. /**
  80. * Add row
  81. *
  82. * Adds a single row to the document. If set to true, self::bConvertTypes
  83. * checks the type of variable and returns the specific field settings
  84. * for the cell.
  85. *
  86. * @param array $array One-dimensional array with row content
  87. */
  88. private function addRow ($array)
  89. {
  90. $cells = "";
  91. foreach ($array as $k => $v):
  92. $type = 'String';
  93. if ($this->bConvertTypes === true && is_numeric($v)):
  94. $type = 'Number';
  95. endif;
  96. $v = htmlentities($v, ENT_COMPAT, $this->sEncoding);
  97. $cells .= "" . $v . "/n";
  98. endforeach;
  99. $this->lines[] = "/n" . $cells . "/n";
  100. }
  101. /**
  102. * Add an array to the document
  103. * @param array 2-dimensional array
  104. */
  105. public function addArray ($array)
  106. {
  107. foreach ($array as $k => $v)
  108. $this->addRow ($v);
  109. }
  110. /**

  111. * Generate the excel file
  112. * @param string $filename Name of excel file to generate (...xls)
  113. */
  114. public function generateXML ($filename = 'excel-export')
  115. {
  116. // correct/validate filename
  117. $filename = preg_replace('/[^aA-zZ0-9/_/-]/', '', $filename);
  118. // deliver header (as recommended in php manual)
  119. header("Content-Type: application/vnd.ms-excel; charset=" . $this->sEncoding);
  120. header("Content-Disposition: inline; filename=/"" . $filename . ".xls/"");
  121. // print out document to the browser
  122. // need to use stripslashes for the damn ">"
  123. echo stripslashes (sprintf($this->header, $this->sEncoding));
  124. echo "/nsWorksheetTitle . "/">/n/n";
  125. foreach ($this->lines as $line)
  126. echo $line;
  127. echo "
  128. /n
    /n";
  129. echo $this->footer;
  130. }
  131. }
  132. ?>
复制代码


Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.