欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP 的 tidy_parse_string() 函数使用方法

程序员文章站 2024-01-16 08:08:52
...

PHP 的 tidy_parse_string() 函数使用方法

PHP代码

<?php
    $options = array("show-body-only" => true);
    $tidy = tidy_parse_string("<B>Hello<I>World!</B></I>", $options);
    echo $tidy;
?>
相关标签: PHP