Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,859 questions

51,780 answers

573 users

How to trigger error in PHP

1 Answer

0 votes
/*
mixed set_error_handler ( callable $error_handler [, int $error_types = E_ALL | E_STRICT ] )
*/
   
function ErrorHandler($errno, $errstr, $errfile, $errline)
{
    if (!(error_reporting() & $errno)) {
        return;
    }

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

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

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

        default:
            echo "Error: [$errno] $errstr<br />\n";
            break;
    }
    return true;
}


set_error_handler("ErrorHandler");

$x = 13;
$y = 0;
if ($y == 0)
    trigger_error("y = 0", E_USER_WARNING);
else
    echo $x/$y;

        
/*
run:

WARNING: [512] y = 0
  
*/

 



answered Jan 2, 2016 by avibootz

Related questions

...