elFinder\elFinderVolumeLocalFileSystem::_dimensions PHP Метод

_dimensions() защищенный Метод

..
Автор: Dmitry (dio) Levashov
protected _dimensions ( string $path, string $mime ) : string
$path string file path
$mime string file mime type
Результат string
    protected function _dimensions($path, $mime)
    {
        clearstatcache();
        return strpos($mime, 'image') === 0 && ($s = @getimagesize($path)) !== false ? $s[0] . 'x' . $s[1] : false;
    }