Uri\WhatWg\Url::getScheme
Retrieve the scheme component
Description
public string Uri\WhatWg\Url::getScheme()
Retrieves the scheme component.
Parameters
This function has no parameters.
Return Values
Returns the scheme component as a string if the scheme component exists, null is returned otherwise.
Examples
Example #1 Uri\WhatWg\Url::getScheme basic example
<?php
$url = new \Uri\WhatWg\Url("https://example.com");
echo $url->getScheme();
?>
The above example will output:
See Also
- Uri\WhatWg\Url::withScheme
- Uri\Rfc3986\Uri::getRawScheme
- Uri\Rfc3986\Uri::getScheme