The PharException class

(Unknown)

Вступ

The PharException class provides a phar-specific exception class for try/catch blocks.

Короткий Огляд Класа

PharException extends Exception {
/* Успадковані властивості */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* Успадковані методи */
final public string Exception::getMessage ( void )
final public Exception Exception::getPrevious ( void )
final public mixed Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::__toString ( void )
final private void Exception::__clone ( void )
}

Зміст

  • PharException — The PharException class provides a phar-specific exception class for try/catch blocks.
add a note add a note

User Contributed Notes 1 note

up
-16
kh dot jaylin at gmail dot com
5 years ago
Addition:

<!DOCTYPE html>
<html>
<body>

<?php
$x
= 10
$y = 6;

echo
$x + $y;
?> 

</body>
</html>

Check more details on: http://www.elivestory.com/
To Top