CaRP Evolution Documentation
CaRP Evolution Documentation
twitter youtube linkedin google-plus
CaRP Evolution Box
Web This Site

CaRP: Caching RSS Parser - Documentation


CaRP Interactive FAQ
Getting Started: Free Download | Purchase | Install
Reference: Functions | Plugins | Themes | Full Index
Etc.: Display Formatting | Example Code | Affiliates

CarpUnmapField( CaRP field name, RSS field name [, is a channel field] );

Delete a mapping between an RSS element or attribute and one of CaRP's internal data fields
EvolutionLEKoiSE
Alln/a>=3.2n/a
Description:
Removes field mappings created by CarpMapField, or default field mappings.

Arguments: See the documentation for CarpMapField. Note that when unmapping a conditional mapping (where the second argument to CarpMapField was an array), the second argument to CarpUnmapField should be only the name of the source RSS field, not an array.

Return value: none

Usage Example:
<?php
require_once '/home/geckotribe/carp/carp.php';
CarpUnmapField('DATE','LASTBUILDDATE',1);
CarpCacheShow('http://www.geckotribe.com/press/rss/pr.rss');
?>