Phalcon\Build\Util::normalize PHP 메소드

normalize() 공개 정적인 메소드

.', '.'.
public static normalize ( $filePath ) : string
$filePath
리턴 string
    public static function normalize($filePath)
    {
        $filePath = realpath($filePath);
        $filePath = str_replace('\\', DIRECTORY_SEPARATOR, $filePath);
        return $filePath;
    }