2 declare(strict_types=1);
31 public static function ftell($handle)
33 return ftell($handle);
44 public static function fclose($handle)
75 public static function fread($handle, $length)
77 return fread($handle, $length);
108 public static function fwrite($handle, $string, $length = null)
112 if (is_null($length)) {
113 return fwrite($handle, $string);
116 return fwrite($handle, $string, $length);
static ftell($handle)
ftell wrapper
static fseek($stream, $offset, $whence)
fseek wrapper.
$stream
PHP stream implementation.
static fread($handle, $length)
fread wrapper
static fclose($handle)
fclose wrapper
static fwrite($handle, $string, $length=null)
fwrite wrapper
static stream_get_contents($handle, $length=-1)
stream_get_contents wrapper