<?php header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=test.xls"); define("STR" ,"BFSY"); for ($i=0; $i < 1000; $i++) { $rand = rand(0,9999999999); $length = strlen($rand); for( $j = 0; $j < 10 - $length; $j++) { $rand = '0' . $rand; } echo STR . $rand . " " ;//要用双引号 }