Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : Body.php
<?php

namespace Unirest\Request;

use CURLFile;
use Exception;

class Body
{
    /**
     * Prepares a file for upload. To be used inside the parameters declaration for a request.
     * @param string $filename The file path
     * @param string $mimetype MIME type
     * @param string $postName the file name
     * @return string|CURLFile
     */
    public static function file(string $filename, string $mimetype = '', string $postName = '')
    {
        if (class_exists('CURLFile')) {
            return new CURLFile($filename, $mimetype, $postName);
        }

        if (function_exists('curl_file_create')) {
            return curl_file_create($filename, $mimetype, $postName);
        }

        return sprintf('@%s;filename=%s;type=%s', $filename, $postName ?: basename($filename), $mimetype);
    }

    /**
     * @throws Exception
     */
    public static function json($data)
    {
        if (!function_exists('json_encode')) {
            throw new Exception('JSON Extension not available');
        }

        return json_encode($data);
    }

    public static function form($data)
    {
        if (is_array($data) || is_object($data) || $data instanceof \Traversable) {
            return http_build_query(Request::buildHTTPCurlQuery($data));
        }

        return $data;
    }

    public static function multipart($data, $files = false): array
    {
        if (is_object($data)) {
            return get_object_vars($data);
        }

        if (!is_array($data)) {
            return [$data];
        }

        if ($files !== false) {
            foreach ($files as $name => $file) {
                $data[$name] = call_user_func([__CLASS__, 'File'], $file);
            }
        }

        return $data;
    }
}
© 2026 GrazzMean-Shell