Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 18.117.100.196
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : FileLimit.php
<?php
/*
 * This file is part of the ManageWP Worker plugin.
 *
 * (c) ManageWP LLC <contact@managewp.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Unlike MWP_Stream_Limit, this stream reader is specialized for limited reading of files because
 * it is not seekable and automatically closes the underlying stream after it has been read to the end (or limit is exceeded).
 */
class MWP_Stream_FileLimit extends MWP_Stream_Limit
{

    /**
     * If EOF is ever reached, it gets remembered so file handle reinitializing is prevented
     * since eof will always return true from then on.
     *
     * @var bool|null
     */
    private $eof = null;

    public function isSeekable()
    {
        return false;
    }

    /**
     * {@inheritdoc}
     */
    public function eof()
    {
        if ($this->eof === true) {
            return true;
        }

        $this->eof = parent::eof();

        return $this->eof;
    }

    /**
     * {@inheritdoc}
     */
    public function read($length)
    {
        $buffer = parent::read($length);
        if ($this->eof()) {
            $this->close();
        }

        return $buffer;
    }
}
© 2025 GrazzMean-Shell