From 72c6f37d8b592347a4f272aed5855ccc7e3a0de6 Mon Sep 17 00:00:00 2001 From: siwa32 Date: Tue, 24 Dec 2024 10:39:39 +0900 Subject: [PATCH] =?UTF-8?q?php=5Funame()=20now=20throws=20ValueError=20(fi?= =?UTF-8?q?xes=20#3968)=E3=81=AE=E7=BF=BB=E8=A8=B3=20(#226)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/php/doc-en/pull/3969/files --- reference/info/functions/php-uname.xml | 40 ++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/reference/info/functions/php-uname.xml b/reference/info/functions/php-uname.xml index 280badffa08..509a942a530 100644 --- a/reference/info/functions/php-uname.xml +++ b/reference/info/functions/php-uname.xml @@ -1,6 +1,6 @@ - + @@ -41,10 +41,17 @@ mode は、どのような情報を返すのかを一文字で指定します: - - 'a': デフォルトです。すべてのモードを - "s n r v m" の順で返します。 - + + 'a': デフォルトです。 + + 's' + 'n' + 'r' + 'v' + 'm' + + の各モードと同じ情報をスペースで区切って返します。 + @@ -90,6 +97,29 @@ + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.4.0 + + 無効な mode を指定した場合に、 + ValueError をスローするようになりました。 + + + + + + + &reftitle.examples;