dtwy2858 2011-12-15 16:44
浏览 54
已采纳

维基百科样式包括 - 循环检测PHP

I have a somewhat interesting query..

I may have over simplified the example, but ill do my best to describe my problem.

I am building a very simple implementation of a wiki from scratch, everything going well until I realized I need Cycle Detection to prevent endless loops of data populating the page and well Overflowing the stack heap.

Database structure is basic, well its more intricate that what is shown but for the purposes of this post the two columns is all we need.

The Content field is straight forward, it stores the Content of the Page or WikiPart links i.e [[n]] to link to another part and includes, links are shopwn as [[n]] and includes are {{n}}.

+---------------------------+
| id    |  Content          |
+---------------------------+
|  1    | see {{2}} here    | 
+---------------------------+
|  2    | {{1}} here [[4]]  | 
+---------------------------+
|  4    | {{1}}             | 
+---------------------------+



$html_for_screen = readData($this->Content);

function readData($wikipage) {

    $str = "";

    //Convert any wiki links to HTML Links
    $wikipage = Converter::convertWikink($wikipage);

    //Get ALL Include Link matches into array
    $wiki_inc = RegEx::getMatches(wikipage); 

    //Iterate through the Matches
    foreach($wiki_inc as $wiki) {
         //traverse through each match. 
         //but I assume here is where I would eventually have the trouble
         //With infinant loops
         $str .= readData($wiki);
    }

    return $str;

}

The Question: How would I prevent Wiki parts endlessly including eachother. i.e WikiPart 1 includes WikiPart2.. but WikiPart 2 includes WikiPart1

The parse or readData() function would just continue looping.

regards

  • 写回答

2条回答 默认 最新

  • douche3791 2011-12-15 17:21
    关注

    Actually if you encounter a cycle, you can't resolve any longer. Example:

    1: {{2}}
    2: {{1}}
    

    This will create an endless loop:

    1 -> 2 -> 1 -> 2 -> ...
    

    As any computers resources are limited, endless loops will result in a crash.

    So what can you do? You could detect that and then error out by using a stack:

    function readData($wikipage)
    {
        static $stack = array();
        if (in_array($wikipage, $stack))
        {
            throw new Exception(sprintf('Circular reference detected: %s -> %s', implode(' -> ', $stack), $wikipage));
        }
        $stack[] = $wikipage;
    
        ... (your existing code)
    
        array_pop($stack);
    }
    

    Additionally you can control recursion limit by using count($stack) to determine the nesting level.

    Actually throwing an exception might not be the proper reaction to the cyclic reference, but it shows how the detection work. You can decide on your own how you'd like to deal with the case, e.g. returning FALSE or not resolving the field any longer etc..

    Edit: Getting creative here:

    If the output is HTML you could make the user resolve the problem as well. If such a cyclic reference is detected, some AJAX marker could be inserted that would request in some form of overlay within the browser that snippet which was unable to obtain on the server side. Such an overlay will then contain the cyclic reference again (being able to overlay again) so that the user would be able to see the cyclic reference interactively.

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

报告相同问题?

悬赏问题

  • ¥15 根据以下文字信息,做EA模型图
  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥60 关机时蓝屏并显示KMODE_EXCEPTION_NOT_HANDLED,怎么修?
  • ¥66 如何制作支付宝扫码跳转到发红包界面