示例#1
0
 /**
  * Method to remove bound fields
  * @param string $row
  * @return string
  */
 public static function sanitizeKeyFields($row)
 {
     $keyFields = PMSEEngineUtils::getKeyFields('/_id$/', $row);
     foreach ($keyFields as $key) {
         unset($row[$key]);
     }
     return $row;
 }