php?抛异常

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Lepaskan: 2016-06-20 12:46:56
asal
869 orang telah melayarinya

php如何自定义异常类,捕获异常和抛出异常.
或者给个例子参考下


回复讨论(解决方案)

try {      throw new Exception($error);  } catch (Exception $e) {      echo $e->getMessage();  }
Salin selepas log masuk

try{
throw new Exception($error);
}catch(Exception $e){
echo $e->getCode();
}

set_exception_handler('myException');test(-1);function test($a){	if($a < 0){		throw new Exception('error');	}	return $a;}function myException($e){	$msg='code : '.$e->getCode().'<br>message : '.$e->getMessage();	echo $msg;}
Salin selepas log masuk

http://www.php.net/manual/zh/language.exceptions.php

function inverse($x) {    if (!$x) {        throw new Exception('Division by zero.');    }    return 1/$x;}try {    echo inverse(5) . "\n";    echo inverse(0) . "\n";} catch (Exception $e) {    echo 'Caught exception: ',  $e->getMessage(), "\n";}// Continue executionecho "Hello World\n";以上例程会输出:0.2Caught exception: Division by zero.Hello World
Salin selepas log masuk

自定义一个异常类

<?phpclass MyException extends Exception { }class Test {    public function testing() {        try {            try {                throw new MyException('foo!');            } catch (MyException $e) {                // rethrow it                throw $e;            }        } catch (Exception $e) {            var_dump($e->getMessage());        }    }}$foo = new Test;$foo->testing();?>
Salin selepas log masuk

try {  

    throw new Exception($error);  

} catch (Exception $e) {  

    echo $e->getMessage();  

}

楼上都是正解

Label berkaitan:
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan