仅检索到标题的第一个字,显示 PHP

Only first word of title retrieved with PHP showing

所以我试图在我的网站上显示另一个网站的列表,一切正常,但只存储了 '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>";
?>

将标题放在引号内

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

右边是

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

没有引号,您只会看到第一个单词 space