Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Helper for returning the current server URL (optionally with request URI)

getScheme(
)
:
string
Returns scheme (typically http or https)
Type | Description |
---|---|
string | scheme (typically http or https) |

serverUrl(
string|boolean $requestUri
=
null
)
:
string
View helper entry point: Returns the current host's URL like http://site.com
Name | Type | Description |
---|---|---|
$requestUri | string|boolean | [optional] if true, the request URI found in $_SERVER will be appended as a path. If a string is given, it will be appended as a path. Default is to not append any path. |
Type | Description |
---|---|
string | server url |

setHost(
string $host
)
:
\Zend_View_Helper_ServerUrl
Sets host
Name | Type | Description |
---|---|---|
$host | string | new host |
Type | Description |
---|---|
\Zend_View_Helper_ServerUrl | fluent interface, returns self |

setScheme(
string $scheme
)
:
\Zend_View_Helper_ServerUrl
Sets scheme (typically http or https)
Name | Type | Description |
---|---|---|
$scheme | string | new scheme (typically http or https) |
Type | Description |
---|---|
\Zend_View_Helper_ServerUrl | fluent interface, returns self |