2 declare(strict_types=1);
25 public static function ftell($handle)
27 return ftell($handle);
35 public static function fclose($handle)
47 public static function fseek($stream, $offset, $whence)
49 return fseek($stream, $offset, $whence);
59 public static function fread($handle, $length)
61 return fread($handle, $length);
84 public static function fwrite($handle, $string, $length = null)
88 if (is_null($length)) {
89 return fwrite($handle, $string);
92 return fwrite($handle, $string, $length);
static ftell($handle)
ftell wrapper
Class PHPFunctions The purpose of this class is to wrap all stream handling php functions.
static fseek($stream, $offset, $whence)
fseek wrapper.
static fread($handle, $length)
fread wrapper
static fclose($handle)
fclose wrapper
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static fwrite($handle, $string, $length=null)
fwrite wrapper
static stream_get_contents($handle, $length=-1)
stream_get_contents wrapper