JBZoo\Utils\FS::real PHP Method

real() public static method

public static real ( string $path ) : string
$path string
return string
    public static function real($path)
    {
        return realpath($path);
    }

Usage Example

Example #1
0
 /**
  * @param string $fullPath
  * @param string $relPath
  * @return string
  */
 public function compile($fullPath, $relPath)
 {
     $this->_initCompiler();
     $fullPath = FS::real($fullPath);
     $result = $this->_compile($fullPath, $relPath);
     return $result;
 }
All Usage Examples Of JBZoo\Utils\FS::real