xlswriter - PHP 最强性能 Excel 扩展
linux 安装
完整编译安装步骤
## 下载
wget https://pecl.php.net/get/xlswriter
tar -zxvf xlswriter
cd xlswriter
phpize
# 执行配置
./configure
# 编译
make
make install
./configure 如果报错,就指定配置路径
./configure --with-php-config=/www/server/php/73/bin/php-config
启用扩展
在 php.ini
中添加:
extension=xlswriter.so
重启PHP 服务
验证安装
php -m | grep xlswriter