The PharException class

(Unknown)

Introduktion

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

Klasse synopsis

PharException extends Exception {
/* Egenskaber */
}

Indholdsfortegnelse

  • 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