<?php $chat=file("chatlist.txt"); if($chat){ $cou=count($chat); }else{ die("这里空荡荡的"); } for($i=0;$i<=$cou;$i++){ echo"{$i}楼说:{$chat[$i]} "; } ?>