613

博客园 首页 新随笔 联系 订阅 管理
<?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 . "\t\n" ;//要用双引号

    }

 

posted on 2017-10-13 15:35  613  阅读(206)  评论(0编辑  收藏  举报