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", };