Returns true if scheme is https
parse( uri : string ) : boolean
Attempts to parse a URI, the results of which are stored in the object.
Parameters uri URI to parse
Returns true on success
setFragment( anchor : string ) : void
Sets the URI fragment identifier.
Parameters anchor Fragment identifier
setHost( host : string ) : void
Sets the URI host name. This does not include the path to the resource.
Parameters host Host name or IP address
Appendix
[ 410 ]
setPass( pass : string ) : void
Sets the URI password. This is part of the scheme authorization; it is not the same as
Joomla! authorization.
Parameters pass Scheme password
setPath( path : string ) : void
Sets the URI path.
Parameters path URI path
setPort( port : int ) : void
Sets the URI port.
Parameters port Port number
setQuery( query : mixed ) : void
Sets the URI query. This can be done using a query string or an associative array.
Parameters query Query string or associative array
setScheme( scheme : string ) : string
Sets the URI scheme, normally http or https.
Pages:
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569