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