3 declare(strict_types=1);
45 public static function ftell($handle)
47 return ftell($handle);
54 public static function fseek($stream,
int $offset,
int $whence):
int 56 return fseek($stream, $offset, $whence);
63 public static function fclose($handle): void
73 public static function fread($handle,
int $length)
75 return fread($handle, $length);
94 public static function fwrite($handle,
string $string, ?
int $length = null)
96 if (is_null($length)) {
97 return fwrite($handle, $string);
100 return fwrite($handle, $string, $length);
static ftell($handle)
ftell wrapper
static fseek($stream, int $offset, int $whence)
static fread($handle, int $length)
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)