Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1821251
URLUtil.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
2 KB
Subscribers
None
URLUtil.php
View Options
<?php
namespace
Sabre\HTTP
;
use
Sabre\URI
;
/**
* URL utility class
*
* Note: this class is deprecated. All its functionality moved to functions.php
* or sabre\uri.
*
* @deprectated
* @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class
URLUtil
{
/**
* Encodes the path of a url.
*
* slashes (/) are treated as path-separators.
*
* @deprecated use \Sabre\HTTP\encodePath()
* @param string $path
* @return string
*/
static
function
encodePath
(
$path
)
{
return
encodePath
(
$path
);
}
/**
* Encodes a 1 segment of a path
*
* Slashes are considered part of the name, and are encoded as %2f
*
* @deprecated use \Sabre\HTTP\encodePathSegment()
* @param string $pathSegment
* @return string
*/
static
function
encodePathSegment
(
$pathSegment
)
{
return
encodePathSegment
(
$pathSegment
);
}
/**
* Decodes a url-encoded path
*
* @deprecated use \Sabre\HTTP\decodePath
* @param string $path
* @return string
*/
static
function
decodePath
(
$path
)
{
return
decodePath
(
$path
);
}
/**
* Decodes a url-encoded path segment
*
* @deprecated use \Sabre\HTTP\decodePathSegment()
* @param string $path
* @return string
*/
static
function
decodePathSegment
(
$path
)
{
return
decodePathSegment
(
$path
);
}
/**
* Returns the 'dirname' and 'basename' for a path.
*
* @deprecated Use Sabre\Uri\split().
* @param string $path
* @return array
*/
static
function
splitPath
(
$path
)
{
return
Uri\split
(
$path
);
}
/**
* Resolves relative urls, like a browser would.
*
* @deprecated Use Sabre\Uri\resolve().
* @param string $basePath
* @param string $newPath
* @return string
*/
static
function
resolve
(
$basePath
,
$newPath
)
{
return
Uri\resolve
(
$basePath
,
$newPath
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Dec 23, 11:56 AM (9 h, 3 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914144
Default Alt Text
URLUtil.php (2 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment