只有用PHP显示的第一个标题词

时间:2015-02-02 17:17:04

标签: php html title simple-html-dom

所以我试图在我的另一个网站上显示一个列表,一切正常,但只存储了'title'属性的第一个单词。我知道整个标题是从其他网站检索的,所以如何让它存储所有这些。

如果有帮助,这是代码。

<?php
include "simple_html_dom.php";
$page = file_get_html("http://www.blade-edge.com/images/KSA/Flights/craft.asp?r=true&db=dunai");
echo "<table id=list>"; 
foreach($page->find('html/body/div/div[2]/ol/a') as $key=>$element) {
    if ($element->title != "No craft within this SOI"){
        $ships[$key] = $element->plaintext;
        $shipTitles[$key] = $element->title;
        $shipLinks[$key] = $element->href;
        echo "<tr>"; 
        echo "<td title =".$shipTitles[$key]." >";
        echo $ships[$key];
        echo "</td>";
        echo "</tr>";
    }
}
echo "</table>";
?>

enter image description here

1 个答案:

答案 0 :(得分:5)

将标题放在引号内

echo "<td title =".$shipTitles[$key]." >";   // Wrong

对是

echo "<td title ='".$shipTitles[$key]."' >";

如果没有引号,您只能看到直到第一个空格的单词