Вход Регистрация
Файл: gapps/vendor/laravel/framework/src/Illuminate/Http/UploadedFile.php
Строк: 77
<?php

namespace IlluminateHttp;

use 
IlluminateSupportTraitsMacroable;
use 
SymfonyComponentHttpFoundationFileUploadedFile as SymfonyUploadedFile;

class 
UploadedFile extends SymfonyUploadedFile
{
    use 
Macroable;

    
/**
     * Get the fully qualified path to the file.
     *
     * @return string
     */
    
public function path()
    {
        return 
$this->getRealPath();
    }

    
/**
     * Get the file's extension.
     *
     * @return string
     */
    
public function extension()
    {
        return 
$this->guessExtension();
    }

    
/**
     * Get the file's extension supplied by the client.
     *
     * @return string
     */
    
public function clientExtension()
    {
        return 
$this->guessClientExtension();
    }

    
/**
     * Get a filename for the file that is the MD5 hash of the contents.
     *
     * @param  string  $path
     * @return string
     */
    
public function hashName($path null)
    {
        if (
$path) {
            
$path rtrim($path'/').'/';
        }

        return 
$path.md5_file($this->path()).'.'.$this->extension();
    }

    
/**
     * Create a new file instance from a base instance.
     *
     * @param  SymfonyComponentHttpFoundationFileUploadedFile  $file
     * @param  bool $test
     * @return static
     */
    
public static function createFromBase(SymfonyUploadedFile $file$test false)
    {
        return 
$file instanceof static ? $file : new static(
            
$file->getPathname(),
            
$file->getClientOriginalName(),
            
$file->getClientMimeType(),
            
$file->getClientSize(),
            
$file->getError(),
            
$test
        
);
    }
}
Онлайн: 0
Реклама