composer使用

一、安装

// 下载composer-setup.php到目标目录
php -r "copy('https://install.phpcomposer.com/installer', 'composer-setup.php');"
// 运行composer-setup.php文件 生成composer.phar文件
php composer-setup.php
// 取消composer-setup.php问价的链接
php -r "unlink('composer-setup.php');"


// 发现文件夹里多了个composer.phar文件了吗?运行它(composer也有提示)
php composer.phar

// 没看到JSON文件?不要着急,先初始化
composer init

初始化的配置项我还没弄明白,先贴张图

这个时候就可以看见composer.json文件了

二、增加依赖

// 增加数据表依赖
composer require phpoffice/phpspreadsheet
// 增加word依赖
composer require phpoffice/phpword

三、使用

// 使用时一定注意引入的路径,本人因为路径没对怀疑了两个小时人生
<?php
require '../vendor/autoload.php';
use PhpOffice\PhpWord\PhpWord;
use App\Http\Controllers\Controller;
use PhpOffice\PhpWord\TemplateProcessor;
use phpOffice\PhpWord\Settings;

class ExportTestController extends ApiBaseController {

    public function exportToWordAction() {
        $teml = './template/informationDelevery.docx';
        $temp = new TemplateProcessor($teml);
        // $table = $this->getParam('table');
        // $text = $this->getParam('text');
        // $images = $this->getParam('images');
        // $temp->setValue('text', "hello world");
        // $tmp->saveAs('hellow.docx');
    }
}
?>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值