����JFIF��x�x����'
| Server IP : 78.140.185.180  /  Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/././././././www/common/Files/Actions/  | 
Upload File :  | 
<?php
namespace Common\Files\Actions;
class GetServerMaxUploadSize
{
    protected $configKeys = ['post_max_size', 'upload_max_filesize', 'memory_limit'];
    /**
     * @return array
     */
    public function execute()
    {
        $configValues = collect($this->configKeys)
            ->map(function($key) {
                $value = ini_get($key);
                return ['original' => $value, 'bytes' => $this->getBytes($value)];
            })->filter(function($value) {
                return $value['bytes'] > 0;
            });
        return $configValues->where('bytes', $configValues->min('bytes'))->first();
    }
    /**
     * @param int|string $value
     * @return int
     */
    protected function getBytes($value)
    {
        if (is_numeric($value)) {
            return (int) $value;
        }
        $metric = strtoupper(substr($value, -1));
        switch ($metric) {
            case 'K':
                return (int) $value * 1024;
            case 'M':
                return (int) $value * 1048576;
            case 'G':
                return (int) $value * 1073741824;
            default:
                return (int) $value;
        }
    }
}