From 75440db2ea37768485124b2ec1199031e05a5754 Mon Sep 17 00:00:00 2001 From: h-marumoto Date: Wed, 19 Nov 2025 17:33:26 +0900 Subject: [PATCH] =?UTF-8?q?set=5Ferror=5Fhandler=E3=81=AE=E3=82=B5?= =?UTF-8?q?=E3=83=B3=E3=83=97=E3=83=AB=E3=82=B3=E3=83=BC=E3=83=89=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reference/errorfunc/functions/set-error-handler.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/errorfunc/functions/set-error-handler.xml b/reference/errorfunc/functions/set-error-handler.xml index 1effa56140..b98688dc6b 100644 --- a/reference/errorfunc/functions/set-error-handler.xml +++ b/reference/errorfunc/functions/set-error-handler.xml @@ -225,7 +225,7 @@ function myErrorHandler($errno, $errstr, $errfile, $errline) if (!(error_reporting() & $errno)) { // error_reporting 設定に含まれていないエラーコードのため、 // 標準の PHP エラーハンドラに渡されます。 - return; + return false; } // $errstr はエスケープする必要があるかもしれません。