enter image description here我需要在PHP從shell腳本輸出文件的網頁創建一個表
這是我的代碼: $ MYFILE =的file_get_contents(「/ ftpfiles /監測數據」)或死亡(「無法」) ; // $ new_array = array_chunk($ myfile,9); // $ new_array = array_filter(explode(「\ n」,file_get_contents('/ ftpfiles/monitor-data')or die(「Unable」))); // $ length = count($ new_array); // print_r($ new_array) $ table =''; $ filearray = explode(「」,$ myfile); // var_dump($ filearray);
foreach($filearray as $value)
{
$table .= '<tr><td align = "center">'.$value.'</td></tr>';
}
$table.='</table>';
echo $table;
但是我只得到一行,我怎麼能爲一行創建9列。我嘗試使用Value [0] .. value [8],但只是將整個字符串分解爲單個字符。
你的問題是你顯示9行而不是1行和9列? – jiboulex
是的。我想顯示13行和9列,但一切都在一列 – harry
請您花一點時間讓這個問題至少稍微顯示? –