summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_mdb2.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-22 18:32:51 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-22 18:32:51 +0000
commit1e5d5725bf3b54ab876056f8c16108f7947734f2 (patch)
treefcc51daf25575be4285e871a57eb70b27825a9d1 /roundcubemail/program/include/rcube_mdb2.php
parentf99ab196a4197253f598652dfc5877bf84ccb90b (diff)
- performance improvements of messages caching
git-svn-id: https://svn.roundcube.net/trunk@2673 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_mdb2.php')
-rw-r--r--roundcubemail/program/include/rcube_mdb2.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_mdb2.php b/roundcubemail/program/include/rcube_mdb2.php
index b1e5fff80..266550127 100644
--- a/roundcubemail/program/include/rcube_mdb2.php
+++ b/roundcubemail/program/include/rcube_mdb2.php
@@ -470,6 +470,26 @@ class rcube_mdb2
/**
+ * Return list of elements for use with SQL's IN clause
+ *
+ * @param string Input array
+ * @return string Elements list string
+ * @access public
+ */
+ function array2list($arr, $type=null)
+ {
+ if (!is_array($arr))
+ return $this->quote($arr, $type);
+
+ $res = array();
+ foreach ($arr as $item)
+ $res[] = $this->quote($item, $type);
+
+ return implode(',', $res);
+ }
+
+
+ /**
* Return SQL statement to convert a field value into a unix timestamp
*
* @param string Field name