thinkphp6 后端解析markdown標(biāo)簽內(nèi)容
在 項(xiàng)目下/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();//實(shí)例化$bodyParse = $Parsedown->text($content); //調(diào)用解析$choices=['role'=>'assistant','content'=>"$content"];//返回前端
關(guān)鍵詞: thinkphp6后端解析markdown標(biāo)簽內(nèi)容
鄂公網(wǎng)安備42060002000147