dongzha5934 2016-07-21 01:55
浏览 39
已采纳

使用PHP分配固定空格导出和下载txt文件[关闭]

I need to make a method to generate and download a txt file where the string length is fixed and reserved. For example, I need to insert data from a record containing id, name, NIF. The id can be 100, therefore, I must reserve three spaces for that string, so if I write the id 1 should be the 2 characters blank, and then the "name" should be followed, without line break. My idea is use a for() loop and when file position is [i], insert the array element [i]. My question is how to define size of that position in the file?

  • 写回答

1条回答 默认 最新

  • dt4233 2016-07-21 03:49
    关注

    Are you looking for str_pad? http://php.net/manual/en/function.str-pad.php str_pad(1, 3, ' ', STR_PAD_LEFT) will " 1". You could have an array telling how long each string should be and use $lenghts[$i] inside your loop to set the padding size

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部