SimplePie_Cache_File::load

Advertisement

Summery Summery

Retrieve the data saved to the cache

Syntax Syntax

SimplePie_Cache_File::load()

Return Return

(array) Data for SimplePie::$data

Source Source

File: wp-includes/SimplePie/Cache/File.php

	{
		if (file_exists($this->name) && is_readable($this->name))
		{
			return unserialize(file_get_contents($this->name));
		}
		return false;
	}

Advertisement

Advertisement

Leave a Reply