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

CarpConfRemove( option name(s), value );

Remove text from one of CaRP's configuration options
EvolutionLEKoiSE
AllAll>=3.1.5>=3.1.5
Description:
Removes the specified text from an existing CaRP configuration option. You may remove from more than one option at the same time by listing the option names, separated by pipe characters (|).

Arguments:
  1. option name(s): The name of the option or options to set.
  2. value: The text to remove from the option or options. NOTE: The case of any letters in value must match their case in the existing configuration option.

Return value: none

Usage Example:
<?php
require_once '/home/geckotribe/carp/carp.php';
CarpConfRemove('descriptiontags','|b|/b');
CarpCacheShow('http://www.geckotribe.com/press/rss/pr.rss');
?>