php将markdown转成BBCode代码

php 文章 2021-03-07 14:16 457 0 全屏看文

AI助手支持GPT4.0

public static function markdown_2_bbcode($text)

{

$text = htmlspecialchars_decode($text);


$text = preg_replace('/\*\*((?:(?!\*\*).)+)\*\*/', '\1', $text);

$text = preg_replace('/\*((?:(?!\*).)+)\*/', '\1', $text);

$text = preg_replace('/##((?:(?!##).)+)(?:##)?/', '\[size=16]\1\[\/size]', $text);

$text = preg_replace('/!!\[(?:(?!\]).)*\]\(((?:(?!\)).)+)\)/', '

', $text);

$text = preg_replace('/!\[(?:(?!\]).)*\]\(((?:(?!\)).)+)\)/', '', $text);

$text = preg_replace('/\[((?:(?!\]).)+)\]\(((?:(?!\)).)+)\)/', '', $text);

$text = preg_replace('/{{{(.+?)}}}/s', '

\1
', $text);

$text = preg_replace('/^>((?:(?!\n\n).)+)/ms', '

\1

', $text);


preg_match_all('/(^\d+\. .+\n?)+/m', $text, $num_list);

if ($num_list[0])

{

foreach ($num_list[0] AS $value)

{

$new_value = trim(preg_replace('/^\d+\. (.+)/m', '[*]\1[/*]', $value));

$text = str_replace($value, "

    \n$new_value\n
", $text);

}

}


preg_match_all('/(^- .+\n?)+/m', $text, $nor_list);

if ($nor_list[0])

{

foreach ($nor_list[0] AS $value)

{

$new_value = trim(preg_replace('/^- (.+)/m', '[*]\1[/*]', $value));

$text = str_replace($value, "

    \n$new_value\n
", $text);

}

}


return htmlspecialchars($text);

}


-EOF-

AI助手支持GPT4.0


国内超级便宜服务器

摸鱼人热门新闻聚合

钻级赞助商 我要加入

开发者在线工具

第三方支付技术请加QQ群

相关文章
用来微信小程序获取access_token的php代码
php解析视频播放器代码(支持优酷土豆乐视youtube)
用来微信小程序获取access_token的php代码并使用memcache缓存
php中去除xss元素
在侧边栏里追加网站的被收录数量
随便看看
线上防疫题库正确答案 2932
线上防疫题库正确答案(多选题) 4825
微信设置不可以使用小程序(游戏小程序) 5635
adsense申请已经支付的订单回退的网址 3212
BT面板查看网站入口、账号密码的命令 6009
ucloud海外服务器超级优惠券 3274
根据您的消费情况,您的延停权益已发生变化,变更后的延停权益为延停额度20.00元 5831
为什么我们喜欢迈克尔杰克逊。 4164
阿里云com、cn域名续费优惠码(2020年5月可用) 3586
阿里云com、cn域名续费优惠码(2020年6月可用) 3606