php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
bz2.stub.php File Reference

Go to the source code of this file.

Functions

 bzopen ($file, string $mode)
 
 bzread ($bz, int $length=1024)
 
 bzwrite ($bz, string $data, ?int $length=null)
 
 bzflush ($bz)
 
 bzclose ($bz)
 
 bzerrno ($bz)
 
 bzerrstr ($bz)
 
 bzerror ($bz)
 
 bzcompress (string $data, int $block_size=4, int $work_factor=0)
 
 bzdecompress (string $data, bool $use_less_memory=false)
 

Function Documentation

◆ bzclose()

bzclose ( $bz)
Parameters
resource$bz@implementation-alias fclose

Definition at line 30 of file bz2.stub.php.

◆ bzcompress()

bzcompress ( string $data,
int $block_size = 4,
int $work_factor = 0 )

Definition at line 45 of file bz2.stub.php.

◆ bzdecompress()

bzdecompress ( string $data,
bool $use_less_memory = false )

Definition at line 47 of file bz2.stub.php.

◆ bzerrno()

bzerrno ( $bz)
Parameters
resource$bz

Definition at line 33 of file bz2.stub.php.

◆ bzerror()

bzerror ( $bz)
Parameters
resource$bz
Returns
array<string, int|string> @refcount 1

Definition at line 43 of file bz2.stub.php.

◆ bzerrstr()

bzerrstr ( $bz)
Parameters
resource$bz

Definition at line 36 of file bz2.stub.php.

◆ bzflush()

bzflush ( $bz)
Parameters
resource$bz@implementation-alias fflush

Definition at line 24 of file bz2.stub.php.

◆ bzopen()

bzopen ( $file,
string $mode )

@generate-class-entries

Parameters
string | resource$file
Returns
resource|false

Definition at line 9 of file bz2.stub.php.

◆ bzread()

bzread ( $bz,
int $length = 1024 )
Parameters
resource$bz

Definition at line 12 of file bz2.stub.php.

◆ bzwrite()

bzwrite ( $bz,
string $data,
?int $length = null )
Parameters
resource$bz@implementation-alias fwrite

Definition at line 18 of file bz2.stub.php.