• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

codeigniter $ this-和amp;gt; dbutil-和amp;gt; csv_from_result忽略最后分隔符

用户头像
it1352
帮助1

问题说明

我使用以下函数导出为CSV。

I am using the following function to export to CSV.

$this->dbutil->csv_from_result()



<它作为一个字段与外键。示例如下:

Unfortunately at the end of the line it prints delimiter, When I use CSV to import data again it takes it as a field with out key. example are here:


id,time,name,

"id", "time", "name",

1,1400000000,John,

"1", "1400000000", "John",

2,1400000000,Matt,

"2", "1400000000", "Matt",

想知道是否有人可以帮助您。

Wondering if anybody can help with this.

正确答案

#1

只需使用

rtrim($ string,,); //这将从字符串结尾剥离逗号

示例:

$string = "abc" ; 

echo rtrim( $string , "c") ; 

It will echo ab

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhecfehc
系列文章
更多 icon
同类精品
更多 icon
继续加载