CasperSecurity

Current Path : /var/www/DbSyncProject_Uim_DB/vendor/facade/flare-client-php/src/Stacktrace/
Upload File :
Current File : /var/www/DbSyncProject_Uim_DB/vendor/facade/flare-client-php/src/Stacktrace/File.php

<?php

namespace Facade\FlareClient\Stacktrace;

use SplFileObject;

class File
{
    /** @var \SplFileObject */
    private $file;

    public function __construct(string $path)
    {
        $this->file = new SplFileObject($path);
    }

    public function numberOfLines(): int
    {
        $this->file->seek(PHP_INT_MAX);

        return $this->file->key() + 1;
    }

    public function getLine(int $lineNumber = null): string
    {
        if (is_null($lineNumber)) {
            return $this->getNextLine();
        }

        $this->file->seek($lineNumber - 1);

        return $this->file->current();
    }

    public function getNextLine(): string
    {
        $this->file->next();

        return $this->file->current();
    }
}
Hacker Blog, Shell İndir, Sql İnjection, XSS Attacks, LFI Attacks, Social Hacking, Exploit Bot, Proxy Tools, Web Shell, PHP Shell, Alfa Shell İndir, Hacking Training Set, DDoS Script, Denial Of Service, Botnet, RFI Attacks, Encryption
Telegram @BIBIL_0DAY