'main.tex','content'=>$content]; $content = <<<'EOF' \section{三十位经} 住在王舍城的竹林园。 那时,三十位波婆城的比丘全是住林野者、全是常乞食者、全是穿粪扫衣者、全是但三衣者、全是尚有结缚者,他们去见世尊。 \subsubsection{子章节1.1 标题} 子章节1-1 正文 \subsection{子章节1.2 标题} 子章节1-2 正文 EOF; $tex[] = ['name'=>'section-1.tex','content'=>$content]; $content = <<<'EOF' \section{章节2 标题} 章节2 正文 \subsection{子章节2.1 标题} 子章节2-1 正文 \subsection{子章节2.2 标题} 子章节2-2 正文 EOF; $tex[] = ['name'=>'section-2.tex','content'=>$content]; $data = Export::ToPdf($tex); if($data['ok']){ $filename = "export/test.pdf"; $this->info($data['content-type']); Storage::disk('local')->put($filename, $data['data']); }else{ $this->error($data['code'].'-'.$data['message']); } return 0; } }