1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\index\controller;
- use library\Controller;
- use Mpdf\Mpdf;
- /**
- * 应用入口
- * Class Index
- * @package app\index\controller
- */
- class Index extends Controller
- {
- /**
- * 入口跳转链接
- */
- public function index()
- {
- $this->redirect('@admin/login');
- }
- public function test()
- {
- $str=file_get_contents('https://lidadz.hdlkeji.com/store/contract/mb');
- $mpdf=new Mpdf(['mode'=>'utf-8','format' => 'A4']);
- $mpdf->SetDisplayMode('fullpage');
- //自动分析录入内容字体
- $mpdf->autoScriptToLang = true;
- $mpdf->autoLangToFont = true;
- $fileUrl = "upload/test/test.pdf";
- $mpdf->WriteHTML($str);
- $mpdf->Output($fileUrl);
- $url= 'https://lidadz.hdlkeji.com/mb.html';
- $content = file_get_contents($url);
- $fileContent = getWordDocument($content,"https://www.jb51.net/Music/etc/");
- $fp = fopen("test.doc", 'w');
- fwrite($fp, $fileContent);
- fclose($fp);
- }
- }
|