1. エラー処理
例外処理: 事故とは、プログラムの実行中に起こる予期せぬ出来事です。例外を使用して、スクリプトの通常の流れを変更します
PHP5 の新しい重要な機能
コードをコピーします コードは次のとおりです。次のように:
if(){
}else{
}
try {
}catch(Exception object){
}
コードは以下の通りです: class OpenFileException extends Exception { function __construct($message = null, $code = 0){
parent: :__construct($message, $code);echo "wwwwwwwwwww
";
function open(){
touch( "tmp.txt"); r");
return $file;
}
}
class DemoException extends Exception {
function pro(){
echo "発生したデモ例外を処理します
";
}
}
class TestException extends Exception {
function pro(){
echo "テストで発生した例外はここで処理されます
";
}
}
class HelloException extends Exception {
}
class MyClass {
function openfile(){
$file=@fopen(" tmp.txt", "r");
if(!$file)
throw new OpenFileException("ファイルを開くことができませんでした");
}
function Demon($num=0){
if($num==1)
throw new DemoException("デモで例外が発生しました");
}
function test($num=0){
if($num= =1)
throw new TestException("テストエラー"); fun($num=0){
if($num==1)
throw new HelloException("######### ##")
}
}
try{
echo "11111111111111
$my=new MyClass();
$my->openfile();
$my->demo(0) ;
$my->test(0);
$my-> fun(1);
echo "222222222222
";
}catch(OpenFileException $e){ //$e =new Exception() ;
;
$file=$e->open();
}catch(DemoException $e){
echo $e->getMessage( )."
"; ;
}catch(TestException $e){
echo $e->getMessage()."
";
}catch(Exception $e){
echo $ e->getMessage()."
";
var_dump($file)
echo "4444444444444
"
上記は、さまざまな場所での違反への対処方法を含め、さまざまな場所での違反への対処方法を補足したものです。PHP チュートリアルに興味のある友人の参考になれば幸いです。