コード例 #1
0
ファイル: clsDB.php プロジェクト: shifter/ospap2
 /** Set a specific field to an integer value. */
 public function setInteger($strName, $strValue)
 {
     if (!clsDB::isValidFieldName($strName)) {
         throw new Exception(ERRORMSG_INVALID);
     }
     $this->set($strName, (int) $strValue);
 }