SimplePie_Locator::__construct

Advertisement

Syntax Syntax

SimplePie_Locator::__construct( $file,  $timeout = 10,  $useragent = null,  $max_checked_feeds = 10 )

Source Source

File: wp-includes/SimplePie/Locator.php

	public function __construct(SimplePie_File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = array())
	{
		$this->file = $file;
		$this->useragent = $useragent;
		$this->timeout = $timeout;
		$this->max_checked_feeds = $max_checked_feeds;
		$this->force_fsockopen = $force_fsockopen;
		$this->curl_options = $curl_options;

		if (class_exists('DOMDocument'))
		{
			$this->dom = new DOMDocument();

			set_error_handler(array('SimplePie_Misc', 'silence_errors'));
			$this->dom->loadHTML($this->file->body);
			restore_error_handler();
		}
		else
		{

Advertisement

Advertisement

Leave a Reply