22 lines
217 B
PHP
22 lines
217 B
PHP
<?
|
|
|
|
//
|
|
// Example PHP file
|
|
//
|
|
|
|
// Some variables
|
|
$a = 1;
|
|
$b = 2;
|
|
|
|
// Create an exception
|
|
$exception = new Exception("Exception!");
|
|
|
|
// Throw the exception
|
|
throw $exception;
|
|
|
|
// Some more variables
|
|
$c = 3;
|
|
$d = 4;
|
|
|
|
?>
|