我需要將不同的表標記代碼作爲字符串存儲在php數組中。一些需要存儲在數組中的代碼需要使用if語句進行測試。在我知道我需要一些需要以這種方式進行測試的代碼之前,一切工作都完美無瑕,但現在我知道存儲的字符串是基於'if語句',我不知道如何對其進行編碼。因爲我需要結束當前插槽的標記以插入php條件語句。因此,我無法繼續將數據存儲在「當前」槽中,這正是我所需要的。根據if語句條件分配字符串數組內容
我一直在努力尋找解決方法一個多小時了,我感謝任何幫助。
$favorites[] = '
<tr>
<td><a href="#">'.$files_row['name'].'</a></td>
<td><a href="#"><img class="table-button" src="images/smallglobe.png"></a></td>
<td>
<img src="images/e-mail-icon.PNG">';
if(strcmp($_files_row['email'],'none') != 0){
$favorites[] = '<div style="display:none;"><a href="#" >'.$files_row['email'].'</a></div>';
}
$favorites[]='
</td>
<td class="table-button-cell">
<img class="table-button" src="images/eicon.png">
<div class="phonepopup" style="display:none;">Call: '.$files_row['phone'].'</div>
</td>
<td class="table-button-cell"> .... etc....
智能工作圍繞:)我會試試看... – AnchovyLegend