AppserverIo\Appserver\ServletEngine\Http\Part::write PHP Method

write() public method

A convenience method to write this uploaded item to disk.
public write ( string $fileName ) : integer
$fileName string The name of the file to which the stream will be written.
return integer
    public function write($fileName)
    {
        return file_put_contents($fileName, $this->getInputStream());
    }