PHP 8.1.28 Released!

bzerror

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

bzerrorRestituisce il codice d'errore bzip2 e la stringa corrispondente in un array

Descrizione

bzerror(resource $bz): array

Restituisce il codice e la stringa di errore, sotto forma di array associativo, di un errore bzip2 restituito dal puntatore bz.

Example #1 Esempio di bzerror()

<?php
$errore
= bzerror($bz);

echo
$errore["errno"];
echo
$errore["errstr"];
?>

Vedere anche bzerrno() e bzerrstr().

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top