【问题标题】:PHP:Fatal error :Cannot redeclare startElement()PHP:致命错误:无法重新声明 startElement()
【发布时间】:2011-01-12 04:56:52
【问题描述】:

由于某种原因,当我尝试在我的 PHP 中使用多个 require() 函数时,我在下面收到此错误。基本上,我使用几个 require() 函数来访问几个 xml 解析器页面。 有谁知道如何解决这个问题?如果这不是很好的描述性,请在下面说,我会尝试解决它。谢谢你。我感谢任何积极的反馈。另外,我只是在学习PHP,所以请不要对我太苛刻。我将在下面提供以下代码。

这是错误: 致命错误:无法在 /Applications/XAMPP/xamppfiles/htdocs/yournewsflow/news/political.php 中重新声明 startElement()(之前在 /Applications/XAMPP/xamppfiles/htdocs/yournewsflow/news/sports.php:27 中声明) 34

Here are the require functions: 

        <?php

        require("news/sports.php");
        require("news/political.php");
        ?>




Here is the xml parser used for a couple pages:
<?php
$tag = "";
$title = "";
$description = "";
$link = "";
$pubDate = "";
$show= 50;
$feedzero = "http://feeds.finance.yahoo.com/rss/2.0/category-stocks?region=US&lang=en-US"; $feedone = "http://feeds.finance.yahoo.com/rss/2.0/category-ideas-and-strategies?region=US&lang=en-US"; 
$feedtwo  = "http://feeds.finance.yahoo.com/rss/2.0/category-earnings?region=US&lang=en-US"; $feedthree = "http://feeds.finance.yahoo.com/rss/2.0/category-bonds?region=US&lang=en-US";
$feedfour  = "http://feeds.finance.yahoo.com/rss/2.0/category-economy-govt-and-policy?region=US&lang=en-US";

$insideitem = false;
$counter = 0;
$outerData;

function startElement($parser, $name, $attrs) {
    global $insideitem, $tag, $title, $description, $link, $pubDate;
    if ($insideitem) {
        $tag = $name;
    } elseif ($name == "ITEM") {
        $insideitem = true;
    } }
function endElement($parser, $name) {
    global $insideitem, $tag, $counter, $show, $showHTML, $outerData;
    global $title, $description, $link, $pubDate;
    if ($name == "ITEM" && $counter < $show) {
        echo "<table>
                <tr>
                  <td>

        <a href=\"".htmlspecialchars($description)."\">".htmlspecialchars($description)."</a>
                  </td>
                </tr>";


        // if you chose to show the HTML
        if ($showHTML) {
            $title = htmlspecialchars($title);
            $description = htmlspecialchars($description);
            $link = htmlspecialchars($link);
            $pubDate = htmlspecialchars($pubDate);

        // if you chose not to show the HTML
        } else {
            $title = strip_tags($title);
            $description = strip_tags($description);
            $link = strip_tags($link);
            $pubDate = strip_tags($pubDate);
        }

        // fill the innerData array
        $innerData["title"] = $title;
        $innerData["description"] = $description;
        $innerData["link"] = $link;
        $innerData["pubDate"] = $pubDate;

        // fill one index of the outerData array
        $outerData["data".$counter] = $innerData;

        // make all the variables blank for the next iteration of the loop
        $title = "";
        $description = "";
        $link = "";
        $pubDate = "";
        $insideitem = false;

        // add one to the counter
        $counter++;
    }
}

function characterData($parser, $data) {
    global $insideitem, $tag, $title, $description, $link, $pubDate;
    if ($insideitem) {
    switch ($tag) {
        case "TITLE":
        $title .= $data;
        break;
        case "DESCRIPTION":
        $description .= $data;
        break;
        case "LINK":
        $link .= $data;
        break;
        case "PUBDATE":
        $pubDate .= $data;
        break;
    }
    }
}


// Create an XML parser 
$xml_parser = xml_parser_create(); 

// Set the functions to handle opening and closing tags 
xml_set_element_handler($xml_parser, "startElement", "endElement"); 

// Set the function to handle blocks of character data 
xml_set_character_data_handler($xml_parser, "characterData"); 

// if you started with feed:// fix it to html://



// Open the XML file for reading
$feedzeroFp = fopen($feedzero, 'r') or die("Error reading RSS data."); 
$feedoneFp = fopen($feedone, 'r') or die("Error reading RSS data."); 
$feedtwoFp = fopen($feedtwo, 'r') or die("Error reading RSS data."); 
$feedthreeFp = fopen($feedthree, 'r') or die("Error reading RSS data."); 
$feedfourFp = fopen($feedfour, 'r') or die("Error reading RSS data."); 
// Read the XML file 4KB at a time 
while ($data = fread($feedoneFp, 4096)) 
//Parse each 4KB chunk with the XML parser created above 
    xml_parse($xml_parser,$data,feof($feedoneFp)) 
        //Handle errors in parsing 
        or die(sprintf("XML error: %s at line %d",
            xml_error_string(xml_get_error_code($xml_parser)),
            xml_get_current_line_number($xml_parser))); 



// Close the XML file 
fclose($feedoneFp); 

while ($data = fread($feedtwoFp, 4096)) 
//Parse each 4KB chunk with the XML parser created above 
    xml_parse($xml_parser,$data,feof($feedtwoFp)) 
        //Handle errors in parsing 
        or die(sprintf("XML error: %s at line %d",
            xml_error_string(xml_get_error_code($xml_parser)),
            xml_get_current_line_number($xml_parser))); 



// Close the XML file 
fclose($feedtwoFp); 
while ($data = fread($feedthreeFp, 4096)) 
//Parse each 4KB chunk with the XML parser created above 
    xml_parse($xml_parser,$data,feof($feedthreeFp)) 
        //Handle errors in parsing 
        or die(sprintfs("XML error: %s at line %d",
            xml_error_string(xml_get_error_code($xml_parser)),
            xml_get_current_line_number($xml_parser))); 



// Close the XML file 
fclose($feedthreeFp); 
while ($data = fread($feedfourFp, 4096)) 
//Parse each 4KB chunk with the XML parser created above 
    xml_parse($xml_parser,$data,feof($feedfourFp)) 
        //Handle errors in parsing 
        or die(sprintf("XML error: %s at line %d",
            xml_error_string(xml_get_error_code($xml_parser)),
            xml_get_current_line_number($xml_parser))); 



// Close the XML file 
fclose($feedfourFp); 



// Free up memory used by the XML parser 
xml_parser_free($xml_parser);

?>

【问题讨论】:

    标签: php parsing xml-parsing


    【解决方案1】:

    您不能多次要求同一个“解析器”,因为您已经在该文件中定义了函数。你需要重构你的代码:

    在 parser.functions.php 中:

    function startElement($parser, $name, $attrs) {
        global $insideitem, $tag, $title, $description, $link, $pubDate;
        if ($insideitem) {
            $tag = $name;
        } elseif ($name == "ITEM") {
            $insideitem = true;
        } }
    function endElement($parser, $name) {
        global $insideitem, $tag, $counter, $show, $showHTML, $outerData;
        global $title, $description, $link, $pubDate;
        if ($name == "ITEM" && $counter < $show) {
            echo "<table>
                    <tr>
                      <td>
    
            <a href=\"".htmlspecialchars($description)."\">".htmlspecialchars($description)."</a>
                      </td>
                    </tr>";
    
    
            // if you chose to show the HTML
            if ($showHTML) {
                $title = htmlspecialchars($title);
                $description = htmlspecialchars($description);
                $link = htmlspecialchars($link);
                $pubDate = htmlspecialchars($pubDate);
    
            // if you chose not to show the HTML
            } else {
                $title = strip_tags($title);
                $description = strip_tags($description);
                $link = strip_tags($link);
                $pubDate = strip_tags($pubDate);
            }
    
            // fill the innerData array
            $innerData["title"] = $title;
            $innerData["description"] = $description;
            $innerData["link"] = $link;
            $innerData["pubDate"] = $pubDate;
    
            // fill one index of the outerData array
            $outerData["data".$counter] = $innerData;
    
            // make all the variables blank for the next iteration of the loop
            $title = "";
            $description = "";
            $link = "";
            $pubDate = "";
            $insideitem = false;
    
            // add one to the counter
            $counter++;
        }
    }
    
    function characterData($parser, $data) {
        global $insideitem, $tag, $title, $description, $link, $pubDate;
        if ($insideitem) {
        switch ($tag) {
            case "TITLE":
            $title .= $data;
            break;
            case "DESCRIPTION":
            $description .= $data;
            break;
            case "LINK":
            $link .= $data;
            break;
            case "PUBDATE":
            $pubDate .= $data;
            break;
        }
        }
    }
    

    在您的实际页面 php 文件中:

    $tag = "";
    $title = "";
    $description = "";
    $link = "";
    $pubDate = "";
    $show= 50;
    $feedzero = "http://feeds.finance.yahoo.com/rss/2.0/category-stocks?region=US&lang=en-US"; $feedone = "http://feeds.finance.yahoo.com/rss/2.0/category-ideas-and-strategies?region=US&lang=en-US"; 
    $feedtwo  = "http://feeds.finance.yahoo.com/rss/2.0/category-earnings?region=US&lang=en-US"; $feedthree = "http://feeds.finance.yahoo.com/rss/2.0/category-bonds?region=US&lang=en-US";
    $feedfour  = "http://feeds.finance.yahoo.com/rss/2.0/category-economy-govt-and-policy?region=US&lang=en-US";
    
    $insideitem = false;
    $counter = 0;
    $outerData;
    
    require_once('path/to/parser.functions.php');
    
    // Create an XML parser 
    $xml_parser = xml_parser_create(); 
    
    // Set the functions to handle opening and closing tags 
    xml_set_element_handler($xml_parser, "startElement", "endElement"); 
    
    // Set the function to handle blocks of character data 
    xml_set_character_data_handler($xml_parser, "characterData"); 
    
    // if you started with feed:// fix it to html://
    
    
    
    // Open the XML file for reading
    $feedzeroFp = fopen($feedzero, 'r') or die("Error reading RSS data."); 
    $feedoneFp = fopen($feedone, 'r') or die("Error reading RSS data."); 
    $feedtwoFp = fopen($feedtwo, 'r') or die("Error reading RSS data."); 
    $feedthreeFp = fopen($feedthree, 'r') or die("Error reading RSS data."); 
    $feedfourFp = fopen($feedfour, 'r') or die("Error reading RSS data."); 
    // Read the XML file 4KB at a time 
    while ($data = fread($feedoneFp, 4096)) 
    //Parse each 4KB chunk with the XML parser created above 
        xml_parse($xml_parser,$data,feof($feedoneFp)) 
            //Handle errors in parsing 
            or die(sprintf("XML error: %s at line %d",
                xml_error_string(xml_get_error_code($xml_parser)),
                xml_get_current_line_number($xml_parser))); 
    
    
    
    // Close the XML file 
    fclose($feedoneFp); 
    
    while ($data = fread($feedtwoFp, 4096)) 
    //Parse each 4KB chunk with the XML parser created above 
        xml_parse($xml_parser,$data,feof($feedtwoFp)) 
            //Handle errors in parsing 
            or die(sprintf("XML error: %s at line %d",
                xml_error_string(xml_get_error_code($xml_parser)),
                xml_get_current_line_number($xml_parser))); 
    
    
    
    // Close the XML file 
    fclose($feedtwoFp); 
    while ($data = fread($feedthreeFp, 4096)) 
    //Parse each 4KB chunk with the XML parser created above 
        xml_parse($xml_parser,$data,feof($feedthreeFp)) 
            //Handle errors in parsing 
            or die(sprintfs("XML error: %s at line %d",
                xml_error_string(xml_get_error_code($xml_parser)),
                xml_get_current_line_number($xml_parser))); 
    
    
    
    // Close the XML file 
    fclose($feedthreeFp); 
    while ($data = fread($feedfourFp, 4096)) 
    //Parse each 4KB chunk with the XML parser created above 
        xml_parse($xml_parser,$data,feof($feedfourFp)) 
            //Handle errors in parsing 
            or die(sprintf("XML error: %s at line %d",
                xml_error_string(xml_get_error_code($xml_parser)),
                xml_get_current_line_number($xml_parser))); 
    
    
    
    // Close the XML file 
    fclose($feedfourFp); 
    
    
    
    // Free up memory used by the XML parser 
    xml_parser_free($xml_parser);
    

    【讨论】:

      【解决方案2】:

      这意味着函数startElement 已经定义。同名函数不能有多个。

      【讨论】:

        猜你喜欢
        • 2010-10-17
        • 2014-11-07
        • 2017-05-22
        • 1970-01-01
        • 2013-07-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多