public function FeedsCrawler::trim in Feeds Crawler 7
Same name and namespace in other branches
- 6.2 FeedsCrawler.inc \FeedsCrawler::trim()
Trims a string by reference.
This is a helper method for use in array_walk_recursive().
File
- ./
FeedsCrawler.inc, line 248 - Home of the FeedsCrawler.
Class
- FeedsCrawler
- Fetches data via HTTP.
Code
public function trim(&$value) {
$value = trim($value);
}