W3cubDocs

/Symfony 3.0

Symfony\Component\DomCrawler\Link

class Link

Link represents an HTML link (an HTML a, area or link tag).

Methods

__construct(DOMElement $node, string $currentUri, string $method = 'GET')

Constructor.

DOMElement getNode()

Gets the node associated with this link.

string getMethod()

Gets the method associated with this link.

string getUri()

Gets the URI associated with this link.

Details

public __construct(DOMElement $node, string $currentUri, string $method = 'GET')

Constructor.

Parameters

DOMElement $node A \DOMElement instance
string $currentUri The URI of the page where the link is embedded (or the base href)
string $method The method to use for the link (get by default)

Exceptions

InvalidArgumentException if the node is not a link

public DOMElement getNode()

Gets the node associated with this link.

Return Value

DOMElement A \DOMElement instance

public string getMethod()

Gets the method associated with this link.

Return Value

string The method

public string getUri()

Gets the URI associated with this link.

Return Value

string The URI

© 2004–2016 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.0/Symfony/Component/DomCrawler/Link.html