File manager - Edit - /usr/local/cpanel/3rdparty/perl/542/cpanel-lib/Stream/Buffered/File.pm
Back
package Stream::Buffered::File; use strict; use warnings; use base 'Stream::Buffered'; use IO::File; sub new { my $class = shift; my $fh = IO::File->new_tmpfile; $fh->binmode; bless { fh => $fh }, $class; } sub print { my $self = shift; $self->{fh}->print(@_); } sub size { my $self = shift; $self->{fh}->flush; -s $self->{fh}; } sub rewind { my $self = shift; $self->{fh}->seek(0, 0); $self->{fh}; } 1;
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.05 |
proxy
|
phpinfo
|
Settings