thinkphp6 后端解析markdown標簽內(nèi)容
在 項目下/extend/Parsedown.php創(chuàng)建 Parsedown.php
文件
解析文件內(nèi)容
function text($text) { $Elements = $this->textElements($text); # convert to markup $markup = $this->elements($Elements); # trim line breaks $markup = trim($markup, "\n"); return $markup; }
全部文件下載
后端調(diào)用方法引入
use Parsedown
$content="要解析的內(nèi)容"; $Parsedown = new Parsedown();//實例化$bodyParse = $Parsedown->text($content); //調(diào)用解析$choices=['role'=>'assistant','content'=>"$content"];//返回前端
關(guān)鍵詞: thinkphp6后端解析markdown標簽內(nèi)容