put example

$response->getHeaders(),
            (string) $response->getBody()
        );
    }

    /** * {@inheritdoc} */
    public function put($url = null, array $headers = []$content = null): Response
    {
        try {
            $response = $this->guzzleClient->put($url$this->formatOptions($headers$content));
        } catch (Exception $e) {
            throw new RequestException($e->getMessage()$e->getCode()$e);
        }

        return new Response(
            (string) $response->getStatusCode(),
            $response->getHeaders(),
            (string) $response->getBody()
        );
    }

    
$name,
        $value = '',
        $expire = '',
        $domain = '',
        $path = '/',
        $prefix = '',
        $secure = null,
        $httponly = null,
        $samesite = null
    ) {
        if ($name instanceof Cookie) {
            $this->cookieStore = $this->cookieStore->put($name);

            return $this;
        }

        /** @var CookieConfig|null $cookieConfig */
        $cookieConfig = config(CookieConfig::class);

        if ($cookieConfig instanceof CookieConfig) {
            $secure ??= $cookieConfig->secure;
            $httponly ??= $cookieConfig->httponly;
            $samesite ??= $cookieConfig->samesite;
        }

        if (in_array('edit', $methods, true)) {
            $this->get($name . '/' . $id . '/edit', $newName . '::edit/$1', $options);
        }
        if (in_array('show', $methods, true)) {
            $this->get($name . '/' . $id$newName . '::show/$1', $options);
        }
        if (in_array('create', $methods, true)) {
            $this->post($name$newName . '::create', $options);
        }
        if (in_array('update', $methods, true)) {
            $this->put($name . '/' . $id$newName . '::update/$1', $options);
            $this->patch($name . '/' . $id$newName . '::update/$1', $options);
        }
        if (in_array('delete', $methods, true)) {
            $this->delete($name . '/' . $id$newName . '::delete/$1', $options);
        }

        // Web Safe? delete needs checking before update because of method name         if (isset($options['websafe'])) {
            if (in_array('delete', $methods, true)) {
                $this->post($name . '/' . $id . '/delete', $newName . '::delete/$1', $options);
            }
            

        $message = json_encode([
            'body' => $body,
            'headers' => $headers,
        ]);

        if (false === $message) {
            throw new TransportException(json_last_error_msg());
        }

        try {
            $job = $this->client->useTube($this->tube)->put(
                $message,
                PheanstalkInterface::DEFAULT_PRIORITY,
                $delay / 1000,
                $this->ttr
            );
        } catch (Exception $exception) {
            throw new TransportException($exception->getMessage(), 0, $exception);
        }

        return (string) $job->getId();
    }

    
/** * {@inheritdoc} */
    public function write($path$contents$append = false)
    {
        $path = $this->strategy->encode($path);

        if ($append === false && $this->filesystem->has($path)) {
            $this->filesystem->delete($path);
        }

        $this->filesystem->put($path$contents);

        return true;
    }

    /** * {@inheritdoc} */
    public function writeStream($path$resource$append = false)
    {
        $path = $this->strategy->encode($path);

        
return $this->filesystem->setVisibility($this->prefix . $path$visibility);
    }

    /** * {@inheritdoc} */
    public function put($path$contents, array $config = [])
    {
        $this->checkPath($path);

        return $this->filesystem->put($this->prefix . $path$contents$config);
    }

    /** * {@inheritdoc} */
    public function putStream($path$resource, array $config = [])
    {
        $this->checkPath($path);

        return $this->filesystem->putStream($this->prefix . $path$resource$config);
    }

    
if(!$this->_readmsg()) return FALSE;
        if(!$this->_checkCode()) return FALSE;
        return $ret;
    }

    function mput($local=".", $remote=NULL, $continious=false) {
        $local=realpath($local);
        if(!@file_exists($local)) {
            $this->PushError("mput","cannot open local folder", "Cannot stat folder \"".$local."\"");
            return FALSE;
        }
        if(!is_dir($local)) return $this->put($local$remote);
        if(empty($remote)) $remote=".";
        elseif(!$this->file_exists($remote) and !$this->mkdir($remote)) return FALSE;
        if($handle = opendir($local)) {
            $list=array();
            while (false !== ($file = readdir($handle))) {
                if ($file != "." && $file != "..") $list[]=$file;
            }
            closedir($handle);
        } else {
            $this->PushError("mput","cannot open local folder", "Cannot read folder \"".$local."\"");
            return FALSE;
        }
Home | Imprint | This part of the site doesn't use cookies.