


How to export Excel files and set column width using PHPExcel library?
PHPExcel library exports Excel and customizes column width
This article introduces how to use the PHPEXcel library to export Excel files and accurately control the column width of each column to solve the problem of difficult adjustment of column width when exporting Excel by native PHP. Native PHP export methods (such as using fputcsv
) cannot accurately control column width, resulting in data displays that may be misaligned or incomplete.
Suppose you need to export a table containing Alipay account, name and payment amount. You hope that Alipay account, name and payment amount occupy columns A, B, and C respectively, and set the appropriate column width to clearly display the data. Here is a native PHP export code example that cannot meet the needs of column width customization:
set_time_limit(0); ob_end_clean(); header("content-type: application/vnd.ms-excel"); header('content-disposition: attachment; filename="Article information statistics'.date('ymdhis').'.xls"'); $fp = fopen('php://output', 'w'); fwrite($fp, chr(0xef).chr(0xbb).chr(0xbf)); $title = array('Alipay account','name','amount of payment'); fputcsv($fp, $title, "\t"); $body = array(); foreach($list as $key=>$val){ $body['alipay_acount'] = $val['alipay_acount']; $body['alipay_real_name'] = $val['alipay_real_name']; $body['money'] = $val['total_check_che']; fputcsv($fp, $body, "\t"); }
This problem can be easily solved using the PHPExcel library. PHPExcel provides setWidth
method to set the column width. For example, set the width of column A to 20:
$objphpexcel->getActiveSheet()->getColumnDimension('A')->setWidth(20);
To set the column width in batches, you can use loops:
- Set the A to Z column width to 20:
$cols = range('A', 'Z'); foreach ($cols as $col) { $objphpexcel->getActiveSheet()->getColumnDimension($col)->setWidth(20); }
- Set different columns and different widths:
$widths = array('A' => 20, 'B' => 15, 'C' => 25); foreach ($widths as $col => $width) { $objPHPExcel->getActiveSheet()->getColumnDimension($col)->setWidth($width); }
Through the above method, you can flexibly set the column width of the Excel file to ensure that the data is displayed clearly and completely in the table. Remember that before using the PHPExcel library, you need to install and introduce the library correctly.
The above is the detailed content of How to export Excel files and set column width using PHPExcel library?. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

Alipay PHP...

Problem Description When calling Alipay EasySDK using PHP, after filling in the parameters according to the official code, an error message was reported during operation: "Undefined...

The OKX trading platform offers a variety of rates, including transaction fees, withdrawal fees and financing fees. For spot transactions, transaction fees vary according to transaction volume and VIP level, and adopt the "market maker model", that is, the market charges a lower handling fee for each transaction. In addition, OKX also offers a variety of futures contracts, including currency standard contracts, USDT contracts and delivery contracts, and the fee structure of each contract is also different.

This article provides a detailed guide to safe download of Ouyi OKX App in China. Due to restrictions on domestic app stores, users are advised to download the App through the official website of Ouyi OKX, or use the QR code provided by the official website to scan and download. During the download process, be sure to verify the official website address, check the application permissions, perform a security scan after installation, and enable two-factor verification. During use, please abide by local laws and regulations, use a safe network environment, protect account security, be vigilant against fraud, and invest rationally. This article is for reference only and does not constitute investment advice. Digital asset transactions are at your own risk.

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

Gate.io (Sesame Open Door) is the world's leading cryptocurrency trading platform. This article provides a complete tutorial on spot trading of Gate.io. The tutorial covers steps such as account registration and login, KYC certification, fiat currency and digital currency recharge, trading pair selection, limit/market transaction orders, and orders and transaction records viewing, helping you quickly get started on the Gate.io platform for cryptocurrency trading. Whether a beginner or a veteran, you can benefit from this tutorial and easily master the Gate.io trading skills.

The choice of H5 and applet depends on the requirements. For applications with cross-platform, rapid development and high scalability, choose H5; for applications with native experience, rich functions and platform dependencies, choose applets.

This article provides a brief guide to buying and selling of Binance virtual currency updated in 2025, and explains in detail the operation steps of virtual currency transactions on the Binance platform. The guide covers fiat currency purchase USDT, currency transaction purchase of other currencies (such as BTC), and selling operations, including market trading and limit trading. In addition, the guide also specifically reminds key risks such as payment security and network selection for fiat currency transactions, helping users to conduct Binance transactions safely and efficiently. Through this article, you can quickly master the skills of buying and selling virtual currencies on the Binance platform and reduce transaction risks.
