diff options
author | Ahmad Anbar <aanbar@gmail.com> | 2015-10-10 21:51:54 +0200 |
---|---|---|
committer | Ahmad Anbar <aanbar@gmail.com> | 2015-10-10 21:51:54 +0200 |
commit | d8687a59572f1f1b6d855588577363f6e628242e (patch) | |
tree | eb012b696c5f290997ebf8b607eccf56fa7c2907 | |
parent | d4357dcc8ef213874d263dd9c55d39446bed2163 (diff) |
Optimize csv_from_result speed.
-rw-r--r-- | system/database/DB_utility.php | 5 |
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; |