CaRP: Caching RSS Parser - Documentation
CarpConfRemove( option name(s), value );
Remove text from one of CaRP's configuration options
| GPL |
Koi |
Evolution |
| >=3.1.5 |
>=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:
- option name(s): The name of the option or options to set.
- 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');
?>