Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php error handling

<?php
// New error handler function
function myErrorHandler($errno, $errstr, $errfile, $errline)
{
    if (!(error_reporting() & $errno)) {
        // This error code is not included in error_reporting, so let it fall
        // through to the standard PHP error handler
        return false;
    }

    switch ($errno) {
    case E_USER_ERROR:
        echo "<b>My ERROR</b> [$errno] $errstr<br />
";
        echo "  Fatal error on line $errline in file $errfile";
        echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />
";
        echo "Aborting...<br />
";
        exit(1);
        break;

    case E_USER_WARNING:
        echo "<b>My WARNING</b> [$errno] $errstr<br />
";
        break;

    case E_USER_NOTICE:
        echo "<b>My NOTICE</b> [$errno] $errstr<br />
";
        break;

    default:
        echo "Unknown error type: [$errno] $errstr<br />
";
        break;
    }

    /* Don't execute PHP internal error handler */
    return true;
}

// function to test the error handling
function scale_by_log($vect, $scale)
{
    if (!is_numeric($scale) || $scale <= 0) {
        trigger_error("log(x) for x <= 0 is undefined, you used: scale = $scale", E_USER_ERROR);
    }

    if (!is_array($vect)) {
        trigger_error("Incorrect input vector, array of values expected", E_USER_WARNING);
        return null;
    }

    $temp = array();
    foreach($vect as $pos => $value) {
        if (!is_numeric($value)) {
            trigger_error("Value at position $pos is not a number, using 0 (zero)", E_USER_NOTICE);
            $value = 0;
        }
        $temp[$pos] = log($scale) * $value;
    }

    return $temp;
}

// set to the user defined error handler
$old_error_handler = set_error_handler("myErrorHandler");

// trigger some errors, first define a mixed array with a non-numeric item
echo "vector a
";
$a = array(2, 3, "foo", 5.5, 43.3, 21.11);
print_r($a);

// now generate second array
echo "----
vector b - a notice (b = log(PI) * a)
";
/* Value at position $pos is not a number, using 0 (zero) */
$b = scale_by_log($a, M_PI);
print_r($b);

// this is trouble, we pass a string instead of an array
echo "----
vector c - a warning
";
/* Incorrect input vector, array of values expected */
$c = scale_by_log("not array", 2.3);
var_dump($c); // NULL

// this is a critical error, log of zero or negative number is undefined
echo "----
vector d - fatal error
";
/* log(x) for x <= 0 is undefined, you used: scale = $scale" */
$d = scale_by_log($a, -2.5);
var_dump($d); // Never reached
?>

Comment

PREVIOUS NEXT
Code Example
Php :: where like in laravel 
Php :: set cookie on button click php or js 
Php :: Calling itself a static function in php 
Php :: laravel collection combine 
Php :: Corsair K70 RGB MK.2 
Php :: PHP: How to remove specific element from an array? 
Php :: woocommerce disable links on specific product 
Php :: json get/post request in php 
Php :: 2 days left format in laravel 
Php :: empty in php 
Php :: Using the PHPExcel library to read an Excel file and transfer the data into a database 
Php :: if file is not selected in file input type php 
Php :: display name cat product woocommerce 
Php :: laravel factory pass parameter 
Php :: Securing form from possible sql injection 
Php :: how remove column in migration laravel 
Php :: sanctum 
Php :: laravel eloquent relationship 
Php :: laravel where and blade 
Php :: yii2 migration --fields foreign 
Php :: php strict mopde 
Php :: namespace in php 
Php :: permutation and combination program in php 
Php :: php huruf besar di awal 
Php :: sqlsrv select 
Php :: extract in php 
Php :: laravel update only changed fields 
Php :: switch case or case php 
Php :: laravel collection every 
Php :: php draw line pixel 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =