19 declare(strict_types=1);
    43     public static function ftell($handle): bool|
int    45         return ftell($handle);
    52     public static function fseek($stream, 
int $offset, 
int $whence): 
int    54         return fseek($stream, $offset, $whence);
    61     public static function fclose($handle): void
    70     public static function fread($handle, 
int $length): bool|string
    72         return fread($handle, $length);
    89     public static function fwrite($handle, 
string $string, ?
int $length = null): bool|
int    91         if (is_null($length)) {
    92             return fwrite($handle, $string);
    95         return fwrite($handle, $string, $length);
 static ftell($handle)
ftell wrapper 
 
static fseek($stream, int $offset, int $whence)
 
static fread($handle, int $length)
 
The purpose of this class is to wrap all stream handling php functions. 
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
static fwrite($handle, string $string, ?int $length=null)
 
static stream_get_contents($handle, $length=-1)