簡體   English   中英

PHP-echo似乎無法正常工作

[英]PHP - echo doesn't seem to work right

我具有此功能,該功能可以通過查找該表的每一行來從另一個站點獲取表,並且如果該行不是重復的,則將其回顯到我的站點。 我想將自己的行添加到底部,所以我認為這就像回顯一樣簡單

<tr><td>TEXT</td></tr>

如下所示。 但是,當我加載頁面時,不會添加此行。 有人知道是什么原因嗎?

是網站,如果有幫助。

function getStats(){
$page = file_get_html(getPageURL());
$rows = array();

echo "<table id=statsTable>"; 
foreach($page->find('html/body/div/div[1]/center/table/tbody/tr[1]/td/table/tbody/tr/td[2]/table/tbody/tr/') as $key=>$element) {
    if(!in_array($element, $rows)){
        $rows[$key]=$element;
        echo $rows[$key-1];
        }
}
echo "<tr><td>Viewing old updates will be added soon</td></tr></table>";
}   

主要問題在於鍵偏移量,當您使用數組時,在這種情況下最好使用鍵。 因此,為了做到這一點,我將in_array更改為array_key_exists ,因為我們要檢查鍵是否存在,但是如果要使用element,則必須知道其鍵。

function getStats(){
    $page = file_get_html(getPageURL());
    $rows = array();

    echo "<table id=statsTable>";
    foreach($page->find('html/body/div/div[1]/center/table/tbody/tr[1]/td/table/tbody/tr/td[2]/table/tbody/tr/') as $key => $element) {
        if(!array_key_exists($key, $rows)){
            $rows[$key] = $element;
            /* Echo only when it exists */
            if(array_key_exists($key-1, $rows)){
                echo $rows[$key-1];
            }
        }
    }
    echo "<tr><td>Viewing old updates will be added soon</td></tr></table>";
}
?>
<?php
    include "getData.php";
    include "simple_html_dom.php";
?>
<!DOCTYPE HTML>
<html>
    <head>
        <title>KSA Flight Tracker</title>
        <link rel="stylesheet" type="text/css" href="KSAStyle.css"/>
    </head>
    <body>
        <div id="page">
            <div id="leftPanel">
                <p id="missionsHeader">Active Missions</p>
                <?php getList(); ?>
            </div>
            <div id="mainPanel">
                <p id="infoHeader">
                    <?php getTitle(); ?>
                </p>
                <div id="info">
                    <center>
                        <?php
                            getInfo();
                            getImage();
                            getMap();
                            getStats();
                        ?>
                    </center>
                </div>
            </div>
        </div>
    </body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM