summaryrefslogtreecommitdiffstats
path: root/system/database/DB_utility.php
diff options
context:
space:
mode:
authorAhmad Anbar <aanbar@gmail.com>2015-10-10 21:51:54 +0200
committerAhmad Anbar <aanbar@gmail.com>2015-10-10 21:51:54 +0200
commitd8687a59572f1f1b6d855588577363f6e628242e (patch)
treeeb012b696c5f290997ebf8b607eccf56fa7c2907 /system/database/DB_utility.php
parentd4357dcc8ef213874d263dd9c55d39446bed2163 (diff)
Optimize csv_from_result speed.
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r--system/database/DB_utility.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php
index 78398ea83..b51893e18 100644
--- a/system/database/DB_utility.php
+++ b/system/database/DB_utility.php
@@ -254,11 +254,12 @@ abstract class CI_DB_utility {
// Next blast through the result array and build out the rows
while ($row = $query->unbuffered_row('array'))
{
+ $line = array();
foreach ($row as $item)
{
- $out .= $enclosure.str_replace($enclosure, $enclosure.$enclosure, $item).$enclosure.$delim;
+ $line[] = $enclosure.str_replace($enclosure, $enclosure.$enclosure, $item).$enclosure;
}
- $out = substr($out, 0, -strlen($delim)).$newline;
+ $out .= implode($delim, $line).$newline;
}
return $out;