我怎样才能摆脱无尽的循环?

时间:2013-07-03 19:44:52

标签: php

我正在尝试创建后缀(名称就是我所做的)。 网址分析器位于以下..

private function explode_url() {

    if (!empty($this->suffix) and empty($is)) {
                                             // look here  ------V
        $url = explode('/', rtrim($_GET['url'], $this->define_suffix())); 
    } else {
        $url = explode('/', trim($_GET['url'], '/'));
    }
    $str = '';
    foreach ($url as $key => $value) {
        if ($key >= 2) {
            $str = $str . '/' . $value;
        } else {
            $data[] = $value;
        }
    }
    $data[] = trim($str, '/');
    foreach ($data as $data) {
        if (!empty($data)) {
            $result[] = $data;
        }
    }
    return $result;
}

这是定义后缀的函数。

private function define_suffix() {
        $count = count($this->explode_url()); // <------ look here
        $count = $count - 1;
        $keys = array('cnt', 'mtd', 'args');
        return $this->suffix[$keys[$count]];
    }

实际上功能很好但是有问题。有一个无限循环。我怎么能逃避这个?

编辑: 输出:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 130968 bytes) in /var/www/cleanmvc/boot.php on line 85

这些函数互相调用,导致无限循环。这就是我需要帮助的地方。

1 个答案:

答案 0 :(得分:-1)

转义循环的关键字是break。如果你嵌套在循环中,你可以通过在break(2)中传递可选参数来打破子循环中的多个循环 - 突破两个级别。

你的无限循环在这里:foreach ($data as $data) {