Bzip2 Funzioni
PHP Manual

bzerror

(PHP 4 >= 4.0.4, PHP 5)

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

Descrizione

array bzerror ( resource $bz )

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().


Bzip2 Funzioni
PHP Manual