PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
<?php namespace Intervention\Image; class File { /** * Mime type * * @var string */ public $mime; /** * Name of directory path * * @var string */ public $dirname; /** * Basename of current file * * @var string */ public $basename; /** * File extension of current file * * @var string */ public $extension; /** * File name of current file * * @var string */ public $filename; /** * Sets all instance properties from given path * * @param string $path */ public function setFileInfoFromPath($path) { $info = pathinfo($path); $this->dirname = array_key_exists('dirname', $info) ? $info['dirname'] : null; $this->basename = array_key_exists('basename', $info) ? $info['basename'] : null; $this->extension = array_key_exists('extension', $info) ? $info['extension'] : null; $this->filename = array_key_exists('filename', $info) ? $info['filename'] : null; if (file_exists($path) && is_file($path)) { $this->mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path); } return $this; } /** * Get file size * * @return mixed */ public function filesize() { $path = $this->basePath(); if (file_exists($path) && is_file($path)) { return filesize($path); } return false; } /** * Get fully qualified path * * @return string */ public function basePath() { if ($this->dirname && $this->basename) { return ($this->dirname .'/'. $this->basename); } return null; } }
[+]
Gd
[-] ImageServiceProviderLeague.php
[edit]
[-] AbstractEncoder.php
[edit]
[-] File.php
[edit]
[+]
..
[+]
Exception
[-] Size.php
[edit]
[-] ImageServiceProviderLumen.php
[edit]
[-] AbstractDriver.php
[edit]
[+]
Filters
[-] ImageManager.php
[edit]
[-] Image.php
[edit]
[-] AbstractDecoder.php
[edit]
[-] Constraint.php
[edit]
[-] Point.php
[edit]
[+]
Facades
[-] AbstractShape.php
[edit]
[-] ImageServiceProvider.php
[edit]
[-] ImageServiceProviderLaravel4.php
[edit]
[+]
Commands
[+]
Imagick
[-] AbstractColor.php
[edit]
[-] AbstractFont.php
[edit]
[-] ImageManagerStatic.php
[edit]
[-] ImageServiceProviderLaravelRecent.php
[edit]
[-] Response.php
[edit]