PHP Doku:: Check whether error handling with exceptions is in use - rarexception.isusingexceptions.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungRar ArchivingThe RarException classRarException::isUsingExceptions

Ein Service von Reinhard Neidl - Webprogrammierung.

The RarException class

<<The RarException class

RarException::setUsingExceptions>>

RarException::isUsingExceptions

(PECL rar >= 2.0.0)

RarException::isUsingExceptionsCheck whether error handling with exceptions is in use

Beschreibung

public static bool RarException::isUsingExceptions ( void )

Checks whether the RAR functions will emit warnings and return error values or whether they will throw exceptions in most of the circumstances (does not include some programmatic errors such as passing the wrong type of arguments).

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns TRUE if exceptions are being used, FALSE otherwise.

Beispiele

Beispiel #1 RarException::isUsingExceptions() example

<?php
//The default is not to use exceptions
var_dump(RarException::isUsingExceptions());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

bool(false)

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)