Back to Uri class

Method parse

public bool
parse
(mixed $uri)
Parse a given URI and populate the class fields.
Parameters
  • string $uri The URI string to parse.
Returns
  • bool True on success.
Since
  • 1.7.0
-
  • The parent method is protected, this exposes it as public for B/C
Class: Uri
Project: Joomla

Method parse - Source code

/**
 * Parse a given URI and populate the class fields.
 *
 * @param   string  $uri  The URI string to parse.
 *
 * @return  boolean  True on success.
 *
 * @since   1.7.0
 * @note    The parent method is protected, this exposes it as public for B/C
 */
public function parse($uri)
{
    return parent::parse($uri);
}