From 2ec1eb4b09cf4c2e2523b1b6ac5ab65e30d87c34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=A6=E7=94=B0=20=E6=86=B2=E5=A4=AA=E9=83=8E?= Date: Fri, 1 May 2026 22:39:11 +0900 Subject: [PATCH] =?UTF-8?q?ini.core.xml=20=E3=81=A8=20match.xml=20?= =?UTF-8?q?=E3=82=92=20doc-en=20=E3=81=AE=E6=9C=80=E6=96=B0=E3=81=AB?= =?UTF-8?q?=E5=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 翻訳内容 ### 独立ファイル - appendices/ini.core.xml — `` から `` タグへ変更 1. php/doc-en@185dda8597 - language/control-structures/match.xml — match 構文ドキュメントのサンプルコード文字列を `"Old adult"` から `"Adult"` に変更 1. php/doc-en@840bdb9be7 --- appendices/ini.core.xml | 4 ++-- language/control-structures/match.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/appendices/ini.core.xml b/appendices/ini.core.xml index abdb9ac438..070961b1cb 100644 --- a/appendices/ini.core.xml +++ b/appendices/ini.core.xml @@ -1,6 +1,6 @@ - +
@@ -818,7 +818,7 @@ Fatal error: Maximum execution time of 30+2 seconds exceeded (terminated) in Unk このオプションを無効にすると、$_POST$_FILES に値が入らなくなります。 リクエストボディは php://input に残ったままになり、 - 手動で読み取るか request_parse_body でパースして取得できます。 + 手動で読み取るか request_parse_body でパースして取得できます。 これは、リクエストをプロキシしたり POST データを処理する際のメモリ消費量を抑えたりする際に有用です。 diff --git a/language/control-structures/match.xml b/language/control-structures/match.xml index e64acd8901..141b3f624a 100644 --- a/language/control-structures/match.xml +++ b/language/control-structures/match.xml @@ -1,6 +1,6 @@ - + match @@ -66,7 +66,7 @@ $output = match (true) { $age < 2 => "Baby", $age < 13 => "Child", $age <= 19 => "Teenager", - $age >= 40 => "Old adult", + $age >= 40 => "Adult", $age > 19 => "Young adult", };