先顶一下,明天有时候再看看

解决方案 »

  1.   

    试一下下面的代码
    foreach ($historyItems as $history) {
    $fromId = $history->CreatorID;
    $toId = $history->RecipientID;
    $message = htmlspecialchars($history->Message);
    $timeSent = $history->SentTime .' on ' . $history->SentDate;
    $symType = htmlspecialchars($history->CharacterType);

    $returnHtml .= '<div class="messageContainer">';
    $returnHtml .= '    <div class="messageHeader">';
    $returnHtml .= '        <div class="memberDetails"><fb:name uid="'.$fromId.'" capitalize="true" /> sent <fb:name subjectid="'.$id.'" uid="'.$toId.'" firstnameonly="true" /> a '.$symType.' Rocker<br/></div>';
    $returnHtml .= '        <div class="metadata">at '.$timeSent.'</div>';
    $returnHtml .= '    </div>';
    $returnHtml .= '    <div class="messageDetail">';
    $returnHtml .= '        <div class="message">'.$message.'</div>';
    $returnHtml .= '        <div class="actions"><a href="'.$this->appfacebookurl.'/step1_b_selectphoto.php?friend='.$fromId.'>Send <fb:name uid="'.$fromId.'" capitalize="true" firstnameonly="true" /></a> a New SymRocker</div>';
    $returnHtml .= '    </div>';
    $returnHtml .= '</div>';
    }