whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
square
/
square
/
src
/
Utils
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/square/square/src/Utils/FileWrapper.php
<?php declare(strict_types=1); namespace Square\Utils; use SplFileObject; /** * Wraps file with mime-type and filename to be sent as part of an HTTP request. */ class FileWrapper { /** * @var string */ private $realFilePath; /** * @var string|null */ private $mimeType; /** * @var string|null */ private $filename; /** * Create FileWrapper instance from a file on disk */ public static function createFromPath(string $realFilePath, ?string $mimeType = null, ?string $filename = ''): self { return new self($realFilePath, $mimeType, $filename); } private function __construct(string $realFilePath, ?string $mimeType, ?string $filename) { $this->realFilePath = $realFilePath; $this->mimeType = $mimeType; $this->filename = $filename; } /** * Get mime-type to be sent with the file */ public function getMimeType(): ?string { return $this->mimeType; } /** * Get name of the file to be used in the upload data */ public function getFilename(): ?string { return $this->filename; } /** * Internal method: Do not use directly! */ public function createCurlFileInstance(string $defaultMimeType): \CURLFile { $mimeType = $this->mimeType ?? $defaultMimeType; return new \CURLFile($this->realFilePath, $mimeType, $this->filename); } /** * Internal method: Do not use directly! */ public function getContent(): ?string { $thisFile = new SplFileObject($this->realFilePath); $content = $thisFile->fread($thisFile->getSize()); return $content === false ? null : $content; } }
Copyright ©2021 || Defacer Indonesia