dsbckxk165039 2018-02-04 16:55
浏览 56
已采纳

PHP - 回显数组中标记的打开和关闭

Here I have an array and there is content situated inside it, their is either, one object, two, or more - depending on the tags required; the first element nested in the multidimensional array would be the textual output, unless it is an array, then the first element inside the array would be the text.

However, the other content in the array is in reference to the HTML tag they correspond to, such as:

    [1] => Array
    (
        [0] => bo          <====== Text to output
        [1] => bold        <====== tag to be within
    )

However, in the module of simplicity, I would prefer for the content not to constantly repeat such responses, like:

This is a test <b>bo</b><i><b>ld</b></i><i>,</i> <u><i>u</i></u><u>nderline</u> ...

Instead the output should be:

This is a test<b>bo<i>ld</i></b><i>, <u>u</u></i><u>nderline</u> ...

This is the PHP code I have for it so far...

$use = array();
$base = "";
foreach ($build as $part => $data) {
//  print_r($use);
    if(!is_array($data)){
        $base .= $data;
    } else {
        $text = array_shift($data);
        if(!is_array($data[0])){
            $data = array($data[0]);
        } else {
            $data = $data[0];
        }
        $removed = array_diff($use,$data);

        foreach (($data) as $tag) {
            if (in_array($tag, array_diff($use,$data))) {
                $base .= "<\/" . $tag . ">";
            } elseif(!in_array($tag, $use)){
                $base .= "<" . $tag . ">";
                array_push($use, $tag);
            }
        }
        $use = $data;
        $base .= $text; 
    }
}
print_r($base);

And here is the array if required (in JSON format!):

["This is a test
Including ",["bo","bold"],["ld",["italic","bold"]],[", ","italic"],["u",["underline","italic"]],["nderlined","underline"],", ",["strike-through","strike"],", and ",["italic","italic"],"
text:

",["numbered lists",["underline","strike","italic","bold"]],["
",[]],"as well as",["
",[]],["non ordered lists","http:\/\/test.com"],["
",[]],"it works very well",["
",[]],["try it","http:\/\/google.com"],"
",["http:\/\/google.com",["bold","http:\/\/google.com"]],"

",["wow","bold"],"
",["lol","bold"]]

Any help would be much appreciated... thanks!

  • 写回答

2条回答 默认 最新

  • drby30217 2018-02-04 21:05
    关注

    I'm honestly not sure if this is exactly what you're looking for. It would be great to have a full desired output... but I believe this is as close as it gets. It took me 3 hours so it better be it. It's a great question, very hard to accomplish.

    I did print_r(htmlentities($base)), but you can simply do print_r($base) to see the formatted result. I did that because it was easier to check with the output you provided in the question.

    Also, I modified your JSON because some tags specified there are non-existent. For example, I changed underline for u, italic for i, bold for b. Alternatives are em, strong... anyway, that's just a side-note.

    <?php
    $build = json_decode('["This is a test
    Including ",["bo","b"],["ld",["i","b"]],[", ","i"],["u",["u","i"]],["nderlined","u"],", ",["strike-through","strike"],", and ",["italic","i"],"
    text:
    
    ",["numbered lists",["u","strike","i","b"]],["
    ",[]],"as well as",["
    ",[]],["non ordered lists","http:\/\/test.com"],["
    ",[]],"it works very well",["
    ",[]],["try it","http:\/\/google.com"],"
    ",["http:\/\/google.com",["b","http:\/\/google.com"]],"
    
    ",["wow","b"],"
    ",["lol","b"]]', true);
    $used = [];
    $base = '';
    foreach($build as $data){
        if(is_array($data)){
            $text = array_shift($data);
            $tags = $data[0];
            if(!is_array($data[0])){
                $tags = [$data[0]];
            }
            $elements = '';
            $tagsToClose = array_diff($used, $tags);
            $changes = true;
            $i = 0;
            foreach($tagsToClose as $tag){
                while($changes){
                    $changes = false;
                    if($lastOpened != $tag){
                        $changes = true;
                        $elements .= '</'.$lastOpened.'>';
                        unset($used[$i++]);
                        $lastOpened = $used[$i];
                    }
                }
                $elements .= '</'.$tag.'>';
                $key = array_search($tag, $used);
                unset($used[$key]);
            }
            foreach($tags as $tag){
                if(!in_array($tag, $used)){
                    $elements .= '<'.$tag.'>';
                    array_unshift($used, $tag);
                    $lastOpened = $tag;
                }
            }
            $elements .= $text;
            $data = $elements;
        }
        $base .= $data;
    }
    unset($used);
    $base .= '</'.$lastOpened.'>';
    print_r(htmlentities($base));
    ?>
    

    EDIT

    And here's the result I got, just in case you run into some trouble testing or to check with your results or whatever:

    This is a test Including <b>bo<i>ld</i></b><i>, <u>u</u></i><u>nderlined, </u><strike>strike-through, and </strike><i>italic text: <u><strike><b>numbered lists</b></strike></u></i> as well as <http://test.com>non ordered lists</http://test.com> it works very well <http://google.com>try it <b>http://google.com </b></http://google.com><b>wow lol</b>

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,