我对heredoc 的语法有疑问。让我先显示代码:
function format($user_id,$user_note,$image,$dt){
//this is the problem
if($image=='NULL'){
//don't display image
}
else {
echo '<img src="userpics/$image" width="480" height="480">';
}
return <<<ENDOFRETURN
<div class ="commentbox">
$date
</div>
<div class="leftpanel">
$user_note
$image
<div class="date">
$rel
</div>
</div>
ENDOFRETURN;
}
该$image
变量来自数据库,它要么为 NULL,要么具有文件名。如果图像为空,我不想显示<img>
标签,如果它确实有值,那么我想显示它。你知道我该如何解决这个问题吗?我一直在尝试一切,但没有任何工作!:))