Server IP : 127.0.0.2 / Your IP : 18.222.194.128 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/guzzlehttp/guzzle/src/Post/ |
Upload File : |
<?php namespace GuzzleHttp\Post; use GuzzleHttp\Message\AppliesHeadersInterface; use GuzzleHttp\Stream\StreamInterface; /** * Represents a POST body that is sent as either a multipart/form-data stream * or application/x-www-urlencoded stream. */ interface PostBodyInterface extends StreamInterface, \Countable, AppliesHeadersInterface { /** * Set a specific field * * @param string $name Name of the field to set * @param string|array $value Value to set */ public function setField($name, $value); /** * Set the aggregation strategy that will be used to turn multi-valued * fields into a string. * * The aggregation function accepts a deeply nested array of query string * values and returns a flattened associative array of key value pairs. * * @param callable $aggregator */ public function setAggregator(callable $aggregator); /** * Set to true to force a multipart upload even if there are no files. * * @param bool $force Set to true to force multipart uploads or false to * remove this flag. */ public function forceMultipartUpload($force); /** * Replace all existing form fields with an array of fields * * @param array $fields Associative array of fields to set */ public function replaceFields(array $fields); /** * Get a specific field by name * * @param string $name Name of the POST field to retrieve * * @return string|null */ public function getField($name); /** * Remove a field by name * * @param string $name Name of the field to remove */ public function removeField($name); /** * Returns an associative array of names to values or a query string. * * @param bool $asString Set to true to retrieve the fields as a query * string. * * @return array|string */ public function getFields($asString = false); /** * Returns true if a field is set * * @param string $name Name of the field to set * * @return bool */ public function hasField($name); /** * Get all of the files * * @return array Returns an array of PostFileInterface objects */ public function getFiles(); /** * Get a POST file by name. * * @param string $name Name of the POST file to retrieve * * @return PostFileInterface|null */ public function getFile($name); /** * Add a file to the POST * * @param PostFileInterface $file File to add */ public function addFile(PostFileInterface $file); /** * Remove all files from the collection */ public function clearFiles(); }