如何用PHP將文字內容以表格的方式展現到HTML頁面上

2020-07-16 10:05:31
本文講述的是如何用PHP將文字內容以表格的方式展現到HTML頁面上,具有一定的參考價值,感興趣的朋友可以參考一下。


<?php
//讀取文字內容
$contents = file_get_contents("names.txt");
//分割字串
$lines = explode("n",trim($contents));
foreach ($lines as $row) {
	$data[]=explode('|',$row);
}
?>

相關教學:PHP視訊教學

<!-- 將文字內容放入表格中 --> 
<!DOCTYPE html> 
<html> 
<head> 
 <meta charset="UTF-8"> 
 <title>人員名單</title> 
</head> 
<body> 
 <h1>人員名單</h1> 
 <table> 
 <thead> 
 <th>編號</th> 
 <th>姓名</th> 
 <th>年齡</th> 
 <th>郵箱</th> 
 <th>網址</th> 
 <tbody> 
 <?php foreach ($data as $row): ?> 
 <tr> 
 <?php foreach ($row as $col): ?> 
 <?php $col=trim($col) ?> 
 <?php if (strpos($col, 'http://')===0): ?> 
 <td><a href="<?php echo strtolower($col)?>"><?php echo substr(strtolower($col),7); ?></a></td> 
 <?php else: ?> 
 <td><?php echo $col;?></td> 
 <?php endif ?> 
 <?php endforeach ?> 
 </tr> 
 <?php endforeach ?> 
 </tbody> 
 </thead> 
 </table> 
</body> 
</html>

相關教學:HTML視訊教學

以上就是如何用PHP將文字內容以表格的方式展現到HTML頁面上的詳細內容,更多請關注TW511.COM其它相關文章!