예제 #1
0
파일: uri.php 프로젝트: adjaika/J3Base
 /**
  * Resolves //, ../ and ./ from a path and returns
  * the result. Eg:
  *
  * /foo/bar/../boo.php    => /foo/boo.php
  * /foo/bar/../../boo.php => /boo.php
  * /foo/bar/.././/boo.php => /foo/boo.php
  *
  * @param   string  $path  The URI path to clean.
  *
  * @return  string  Cleaned and resolved URI path.
  *
  * @since       11.1
  * @deprecated  4.0   Use {@link \Joomla\Uri\Uri::cleanPath()} instead
  */
 protected function _cleanPath($path)
 {
     return parent::cleanPath($path);
 }