3 Star 15 Fork 2

GamerNoTitle/Minecraft-Server-Status

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
closeTags.php 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
GoneTone 提交于 2018-08-12 17:29 . Bug fix
<?php
function closeTags($html) {
@preg_match_all('#<([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result);
$openedtags = $result[1];
@preg_match_all('#</([a-z]+)>#iU', $html, $result);
$closedtags = $result[1];
$len_opened = count($openedtags);
if (count($closedtags) == $len_opened) {
return $html;
}
$openedtags = array_reverse($openedtags);
for ($i=0; $i < $len_opened; $i++) {
if (!in_array($openedtags[$i], $closedtags)) {
$html .= '</'.$openedtags[$i].'>';
} else {
unset($closedtags[array_search($openedtags[$i], $closedtags)]);
}
}
return $html;
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/GamerNoTitle/Minecraft-Server-Status.git
git@gitee.com:GamerNoTitle/Minecraft-Server-Status.git
GamerNoTitle
Minecraft-Server-Status
Minecraft-Server-Status
master

搜索帮助