Index.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\index\controller;
  15. use library\Controller;
  16. use Mpdf\Mpdf;
  17. /**
  18. * 应用入口
  19. * Class Index
  20. * @package app\index\controller
  21. */
  22. class Index extends Controller
  23. {
  24. /**
  25. * 入口跳转链接
  26. */
  27. public function index()
  28. {
  29. $this->redirect('@admin/login');
  30. }
  31. public function test()
  32. {
  33. $str=file_get_contents('https://lidadz.hdlkeji.com/store/contract/mb');
  34. $mpdf=new Mpdf(['mode'=>'utf-8','format' => 'A4']);
  35. $mpdf->SetDisplayMode('fullpage');
  36. //自动分析录入内容字体
  37. $mpdf->autoScriptToLang = true;
  38. $mpdf->autoLangToFont = true;
  39. $fileUrl = "upload/test/test.pdf";
  40. $mpdf->WriteHTML($str);
  41. $mpdf->Output($fileUrl);
  42. $url= 'https://lidadz.hdlkeji.com/mb.html';
  43. $content = file_get_contents($url);
  44. $fileContent = getWordDocument($content,"https://www.jb51.net/Music/etc/");
  45. $fp = fopen("test.doc", 'w');
  46. fwrite($fp, $fileContent);
  47. fclose($fp);
  48. }
  49. }