RSSCache::__construct( $base = ,  $age =  )

In this article

PHP5 constructor.

Source

function __construct( $base = '', $age = '' ) {
	$this->BASE_CACHE = WP_CONTENT_DIR . '/cache';
	if ( $base ) {
		$this->BASE_CACHE = $base;
	}
	if ( $age ) {
		$this->MAX_AGE = $age;
	}

}

User Contributed Notes

You must log in before being able to contribute a note or feedback.