diff options
author | alecpl <alec@alec.pl> | 2009-06-22 18:32:51 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-22 18:32:51 +0000 |
commit | ad84f9c06c14b70f6f764df1f77b964d65db1f99 (patch) | |
tree | 369e944f3cae8e049aa089cd86e045d1ef71796e /program/include/rcube_mdb2.php | |
parent | ecb9fb058da8d0f5a8e59402c1c1ced21122cbc5 (diff) |
- performance improvements of messages caching
Diffstat (limited to 'program/include/rcube_mdb2.php')
-rw-r--r-- | program/include/rcube_mdb2.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/program/include/rcube_mdb2.php b/program/include/rcube_mdb2.php index b1e5fff80..266550127 100644 --- a/program/include/rcube_mdb2.php +++ b/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 |