RarException::setUsingExceptionsActivate and deactivate error handling with exceptions Description
public static void RarException::setUsingExceptions(bool
$using_exceptions )
If and only if the argument is Exceptions will also be thrown for the following errors, which occur outside the library (their error code will be -1):
Parameters
Return ValuesNo value is returned. Examples
Example #1 RarException::setUsingExceptions example
The above example will output something similar to: bool(false) Warning: RarArchive::open(): Failed to open does_not_exist.rar: ERAR_EOPEN (file open error) in C:\php_rar\trunk\tests\test.php on line 3 bool(false) bool(true) Fatal error: Uncaught exception 'RarException' with message 'unRAR internal error: Failed to open does_not_exist.rar: ERAR_EOPEN (file open error)' in C:\php_rar\trunk\tests\test.php:8 Stack trace: #0 C:\php_rar\trunk\tests\test.php(8): RarArchive::open('does_not_exist....') #1 {main} thrown in C:\php_rar\trunk\tests\test.php on line 8 See Also
|