- Timestamp:
- 2011/02/27 01:13:17 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_DB.php
r20284 r20428 86 86 // 正常に接続されている場合 87 87 if(!$objQuery->isError()) { 88 list($db_type) = split(":", $dsn);88 list($db_type) = explode(":", $dsn); 89 89 90 90 // カラムリストを取得 … … 1242 1242 function sfIsRecord($table, $col, $arrval, $addwhere = "") { 1243 1243 $objQuery =& SC_Query::getSingletonInstance(); 1244 $arrCol = split("[, ]", $col);1244 $arrCol = preg_split("/[, ]/", $col); 1245 1245 1246 1246 $where = "del_flg = 0";
Note: See TracChangeset
for help on using the changeset viewer.