search
HomeBackend DevelopmentPHP TutorialPHP - Html Transfer Code_PHP Tutorial


PHP - Html Transfer Code Hypertext conversion code, there is already a lot of it on the market, but I have been practicing it myself in the past few days~~~~

Supports multiple nesting and same-label nesting, mixed highlighting (There is still a little problem)

I feel that it is easy to modify and expand~~~~~~~~~~~

/**************************************************
*                                                 *
* Name    : Functions 4 Html Transfer Code (HTC)  *
* Version : 1.3.2                                 *
* Author  : Windy_sk                              *
* Create  : 2003-09-03                            *
* Modified: 2003-12-17                            *
* Email   : windy_sk@126.com                      *
* HomePage: None (Maybe Soon)                     *
* Notice  : U Can Use & Modify it freely,         *
*           BUT PLEASE HOLD THIS ITEM.            *
*                                                 *
************************************************** /

$htc_list = array(
"B" "B" => "\1",
"I" "I" => "\1< ;/i>",
"U" "U" => "\1",
"CENTER" => "

\ 1
n" "URL" "URL" lt;a href='mailto:\1 '>\1",
"IMAGE" "IMAGE" => "
PHP - Html Transfer Code_PHP Tutorial

n",
"DOWNLOAD" => "exec:get_dl_html('\1')",
"LIST" => "exec:get_list_html(' \1')" , "quote" = & gt; "" & lt; center & gt; & lt; table border = '0' width = '90%' cellspacing = '0' cellpadding = '0' & gt; tr & gt; & lt; td & gt; quote :< ;/tr>
\1
n",
                "IFRAME"        => "
n",
                "MOVE"                => "
\1
n",
                "GLOW"                => "
\1
n",
                "SHADOW"        => "
\1
n",
                "DROPSHADOW"        => "
\1
n",
                "GBMUSIC"        => "n",
                "MUSIC"                => "

Download The Music
n",               
                "FLASH"                => "
n",
                "SHOCKWAVE"        => "
n",
                "QUICKTIME"        => "

Download The Movie
n",
                "REALPLAYER"        => "

Download The Movie
\n",
                "MEDIAPLAYER"        => "

Download The Movie
\n",
                "VOTE"                => "exec:get_vote_html('\\1')",
                );

$htc_list_att = array(
                "ALIGN"                => "
\\2
n",
                "URL"                => "\2",
                "EMAIL"                => "\2",
                "IMAGE"                => "
\1

n",
                "FONTFACE"        => "\2",
                "FONTSIZE"        => "\2",
                "FONTCOLOR"        => "\2",
                "DOWNLOAD"        => "exec:get_dl_html('\1', '\2')",
                "LIST"                => "exec:get_list_html('\2','\1')",
                "ATTACH"        => "exec:get_attach_html('\2', '\1')",
                "VOTE"                => "exec:get_vote_html('\1','\2')",
                );

$htc_list_spl = array(
                "PHP"                => "exec:get_highlight_html('\1', 'php')",
                "CSS"                => "exec:get_highlight_html('\1', 'css')",
                "HTML"                => "exec:get_highlight_html('\1', 'html')",
                "SCRIPT"        => "exec:get_highlight_html('\1', 'script')",
                "CODE"                => "exec:get_code_html('\1')",
                "EXECUTE"        => "\1",
                );


function get_highlight_html($str, $type = "php") {
        $type = strtolower($type);
        $type_func = $type."_highlight";
        $type = strtoupper($type);
        $result = "
";
        if(!function_exists($type_func)) $type_func = "php_highlight";
        $result .= "
       
       
       
高亮显示 {$type} 代码:

          

          ".$type_func($str)."
          

        ".($type=="HTML"?"":"")."
       
       
       

        ";
        return $result;
}


function php_highlight($str) {
        $str = str_replace("\"",""",$str);
        return highlight_string($str, true);
}


function css_highlight($str, $nl = true) {
        $color_1 = "red";
        $color_2 = "green";
        $color_3 = "blue";
        $str = str_replace("\"",""",$str);
        $str = str_replace("r", "", $str);
        preg_match_all("/[\*.w#: ]+{[^{}]+}/", $str, $arr_css);
        $arr_css = $arr_css[0];
        for($i=0; $i                $head = preg_replace("/([\*.w#: ]+{)[^{}]+}/", "\1".($nl?"
n":""), $arr_css[$i]);
                $unit = preg_replace("/[\*.w#: ]+{([^{}]+)}/", "\1", $arr_css[$i]);
                $unit_list = preg_split("/;s*/", $unit);
                $unit = "n";
                for($j=0; $j                        if(strlen($unit_list[$j])>0)
                                $unit .= "    " . preg_replace("/s*([w-]+)s*:s*(.*)/e", "'\1 : '.htmlspecialchars('\2').' ; '", $unit_list[$j]) . ($nl?"
n":"n");
                }
                $arr_css[$i] = $head . $unit . "}";
        }
        return join(($nl?"n

n":"nn"), $arr_css);
}


function script_highlight_note($str, $mode = true) {
        $color_note = "gray";
        $str = str_replace("\"",""",$str);
        $str = preg_replace("/(.*)/isU", "\1", $str);
        $str = $mode?"/*{$str}*/":"//{$str}";
        return "{$str}";
}


function script_highlight($str, $nl = true) {
        $color_1 = "red";
        $color_2 = "blue";
        $color_3 = "brown";
        $color_4 = "green";
        $str = str_replace("\"",""",$str);
        $str = htmlspecialchars($str);
        $str = str_replace("=","&equal;",$str);
        $str = str_replace("|","&vertical;",$str);
        $keywords = array(
                        "{$color_1}"        => array("null", "true", "false", "NaN"),
                        "{$color_2}"        => array("var", "for", "if", "else", "switch", "case", "function", "loop", "continue", "break", "", "!&equal;", "&equal;&equal;", "&equal;", "&&", "&vertical;&vertical;"),
                        "{$color_3}"        => array("window", "self", "this", "event", "document", "opener", "Navigator", "Math", "Array", "String", "Object", "Function", "Number"),
                        );
        foreach($keywords as $key => $value) {
                for($i=0; $i                        $str = preg_replace("/(W)(".$value[$i].")(W)/", "\1\2\3", $str);
                }
        }
        $str = preg_replace("/(.|s)([a-z]+)(/i" ,"\1\2(", $str);
        $str = preg_replace("/.(w+)(?!()/i" ,".\1", $str);
        $str = preg_replace("///([^n]*)n/e" ,"script_highlight_note('\1', false)", $str);
        $str = preg_replace("//*(.*?)*//es" ,"script_highlight_note('\1')", $str);       
        $str = str_replace("t", "    ", $str);
        $str = str_replace("&equal;","=",$str);
        $str = str_replace("&vertical;","|",$str);
        return $nl?nl2br($str):$str;
}


function html_highlight_attr($att) {
        $color_1 = "red";
        $color_2 = "brown";
        $color_3 = "black";
        $att = str_replace("\"",""",$att);
        $att = preg_replace("/=s*('|")([^'"]+)\1/eU","'=\1'.preg_replace('/s+/','|:s:|','\2').'\1'",$att);
        $att = str_replace("\"",""",$att);
        $att .= " ";
        preg_match_all("/[a-z:/-]+(=(['"]?).*[^\\]{1}\2?)?s+/iU", $att, $att_list);
        $att_list = $att_list[0];
        for($i=0; $i                if(empty($att_list[$i])) continue;
                $att_list[$i] = trim($att_list[$i]);
                $att_list[$i] = preg_replace("/([^=]+)([=]?)(['"]?)(.*)(\3)/", "\1 font>\2 font>\3\4 font>\3", $att_list[$i]);
        }
        return str_replace("|:s:|", " ", join(" ", $att_list));
}


function html_highlight($str) {
        $color_1 = "red";
        $color_2 = "blue";
        $color_3 = "gray";
        $str = str_replace("\"",""",$str);
        preg_match_all("/<script>]*)>(.*)</script>/isU", $str, $arr_tmp);
        $arr_script = $arr_tmp[0];
        for($i=0; $i                $str = str_replace($arr_script[$i], "
::script_{$i}::
", $str);
                $arr_script[$i] = preg_replace("/<script>]*)>(.*)</script>/iseU", "'<script></script>
'.script_highlight(str_replace('\"','"','\2'), false).''", $arr_script[$i]);
        }
        $str = preg_replace("/()/ieU" ,"'\1'.htmlspecialchars('\2').'\3'", $str);
        $str = preg_replace("//seU" ,"''", $str);
        $str = preg_replace("//isU" ,"\2!>", $str);
        $str = preg_replace("//ise" ,"' font>'", $str);
        $str = preg_replace("//i" ,"", $str);
        $str = preg_replace("//sU" ,"", $str);
        $str = preg_replace("/]*)>(.*)!>/iseU" ,"'
'.css_highlight(str_replace('\"','"','\2'), false).'
'", $str);
        for($i=0; $i                $str = str_replace("
::script_{$i}::
", $arr_script[$i], $str);
        }
        $str = str_replace(" font>", "
", $str);
        $str = str_replace(" b>", "", $str);
        $str = str_replace(" >", ">", $str);
        $str = str_replace("  ","  ",$str);
        $str = str_replace("t","    ",$str);
        return nl2br($str);
}


function get_file_pic($filename) {
        global $root_path;
        $ext = str_replace(".","",strrchr($filename,"."));
        $pic = $root_path."images/mime_type/{$ext}.gif";
        return file_exists($pic)?"$pic":$root_path."images/mime_type/attch.gif";
}


function get_dl_html($filename, $str = "") {
        return "PHP - Html Transfer Code_PHP Tutorial ".(empty($str)?basename($filename):$str)."";
}


function get_attach_html($filename, $id) {
        return "PHP - Html Transfer Code_PHP Tutorial $filename";
}


function get_vote_html($vote_idx, $message = ""){
        global $db_host, $db_user, $db_pass, $db_name;
        $db = new DB_Manager($db_host, $db_user, $db_pass);
        $db->Connect();
        $db->SelectDB($db_name);
        $db->Query("select * from mnms_poll where id=".$vote_idx);
        $record = $db->GetRS();
        $str = "";
        $db->close();
        unset($db);
        if($record) {
                $username = "dummy";
                $if_vote = !(strpos($record[vote_user], "|{$username}|")===false)
strpos($record[vote_user], "|".GetIp()."|");
                $str .= "
                       

                          ".(empty($message)?$record[vote_title]:$message)."
                          

                          ";
                $vote_list = split("::",$record[vote_list]);
                $vote_count = split("::",$record[vote_count]);
                $vote_users = count(split("n", $record[vote_user])) - 1;
                $vote_sum = array_sum($vote_count);
                $str .= "
                            ";
                if($vote_sum==0) $vote_sum = 1;
                for($i=0; $i                        $str .= "
                            
n";
                }
                $str .= "";
                $str .= "
                          
目前共有 {$vote_users} 人参与了本投票
".($if_vote?"► ":"").htmlspecialchars($vote_list[$i])." PHP - Html Transfer Code_PHP Tutorial 占总票数的 ".ceil((int)$vote_count[$i]*100/$vote_sum)."%

".($if_vote?"您已经投过票了!":"   ")."

                          

                       
";
        }
        return $str;
}


function get_code_html($str) {
        $str = str_replace("\"",""",$str);
        return "
       
          
       


            
            
            
            (提示:可以先修改部分代码)
          
";
}


function get_list_html($content, $type = "") {
        $content = preg_replace("/(
)?[rn]+/", "n", $content);
        $content = preg_replace("/[rn]+/", "n", $content);
        $content = preg_replace("/^[n]*(.*)[n]*$/m", "\1", $content);
        $content = str_replace("n", "
  • ", $content);
            $content = "
    • $content
    n";
            return $content;
    }


    function html_trans($str) {
            $search  = array("&",                "'",                """,                "",        "  ",                "t");
            $replace = array("&",        "'",        """,        "",        "  ",        "    ");
            return nl2br(str_replace($search, $replace, $str));
    }


    function link_url($str) {
            $str = preg_replace("/((http|ftp|mms|rtsp|pnm|mailto)://[w@:./?=&;#-%]+)/i", "\1", $str);
            $str = preg_replace("/(w+@(w+.)+[w]{2,3})/i", "\1", $str);
            $str = preg_replace("/(href|src)='[^'/iU", "\1=\2", $str);
            return $str;
    }


    function htc2html_loop($str) {
            global $htc_list, $htc_list_att;
            foreach($htc_list as $key => $value) {
                    if(substr($value,0,5)=="exec:"){
                            $str = preg_replace("/[$key]((.(?![$key(s?=s?([^]]+))?]))*)[/$key]/iexsU", substr($value,5), $str);
                    }else {
                            $str = preg_replace("/[$key]((.(?![$key(s?=s?([^]]+))?]))*?)[/$key]/ixsU", "$value", $str);
                    }
            }
            foreach($htc_list_att as $key => $value) {
                    if(substr($value,0,5)=="exec:"){
                            $str = preg_replace("/[$keys?=s?([^]]+)]((.(?![$key(s?=s?([^]]+))?]))*)[/$key]/iesxU", substr($value,5), $str);
                    } else {
                            $str = preg_replace("/[$keys?=s?([^]]+)]((.(?![$key(s?=s?([^]]+))?]))*)[/$key]/isxU", "$value", $str);
                    }
            }
            return $str;
    }


    function htc2html($str, $trans_url = true , $loop = 3) {
            global $htc_list_spl;
            $str = preg_replace("/([w+])s*/ixs","\1",$str);
            $str = preg_replace("/s*([/w+])/ixs","\1",$str);
            foreach($htc_list_spl as $key => $value) {
                    preg_match_all("/[$key](.*)[/$key]/ixsU", $str, $arr_tmp);
                    $arr_spl[$key] = $arr_tmp[0];
                    for($i=0; $i                        $str = str_replace($arr_spl[$key][$i], "
    ::{$key}_{$i}::
    ", $str);
                            if(substr($value,0,5)=="exec:"){
                                    $arr_spl[$key][$i] = preg_replace("/[$key](.*)[/$key]/iexsU", substr($value,5), $arr_spl[$key][$i]);
                            } else {
                                    $arr_spl[$key][$i] = preg_replace("/[$key](.*)[/$key]/ixsU", "$value", $arr_spl[$key][$i]);
                            }
                    }
            }
            $str = html_trans($str);
            while($loop-- > 0) {
                    if(!preg_match("/[(w+)(s?=s?([^]]+))?](.*)[/\1]/isU", $str)) break;
                    $str = htc2html_loop($str);
            }
            if($trans_url) $str = link_url($str);
            foreach($htc_list_spl as $key => $value) {
                    for($i=0; $i                        $str = str_replace("
    ::{$key}_{$i}::
    ", $arr_spl[$key][$i], $str);
                    }
            }
            return $str;
    }
    ?>



    使用方法:

    echo htc2html($str);

    OK 了~~~~~~~~

    www.bkjia.comtruehttp://www.bkjia.com/PHPjc/314366.htmlTechArticlePHP - Html Transfer Code超文本转换码,市面上这东西已经很滥(多)了,不过是这几天自己实践了一下~~~~ 支持 多重嵌套 和 同标签嵌套,混合...
  • Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

    php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

    php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

    实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

    php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

    php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

    php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

    php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

    php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

    判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

    php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

    在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

    php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

    方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

    php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

    php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Hot Tools

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    DVWA

    DVWA

    Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor