diff --git a/reference/opcache/functions/opcache-invalidate.xml b/reference/opcache/functions/opcache-invalidate.xml index eda1169e6d..3a01dfade3 100644 --- a/reference/opcache/functions/opcache-invalidate.xml +++ b/reference/opcache/functions/opcache-invalidate.xml @@ -1,6 +1,6 @@ - + @@ -18,8 +18,7 @@ この関数は opcode キャッシュのうち、特定のスクリプトを無効にします。 force パラメータが指定されていないか、 &false; の場合は、スクリプトの更新時刻が opcode キャッシュ時の更新時刻より新しい場合にだけ無効にします。 - この関数は、インメモリキャッシュ の情報だけを無効にします。 - ファイルキャッシュ の情報は無効にしません。 + opcache.file_cache ディレクティブが有効な場合は、対応するファイルキャッシュのエントリも無効にします。 diff --git a/reference/strings/functions/crypt.xml b/reference/strings/functions/crypt.xml index 64dd28209f..2335048b38 100644 --- a/reference/strings/functions/crypt.xml +++ b/reference/strings/functions/crypt.xml @@ -1,6 +1,6 @@ - + @@ -41,13 +41,13 @@ password_hashcrypt のシンプルなラッパーであり、既存のパスワードハッシュと互換性があります。 password_hash を使うことを推奨します。 - + ハッシュ方式は、salt 引数によって決まります。 salt を省略した場合は、標準の 2 文字 (DES) の salt を自動生成します。 あるいは、MD5 crypt() が使えれば 12 文字 (MD5) の salt を自動生成します。 PHP の定数 CRYPT_SALT_LENGTH には、 ハッシュで使用できる salt の最大長が格納されています。 - + 標準の DES ベースの場合、crypt は出力の最初の 2 文字を salt として使用します。また、 diff --git a/reference/strings/functions/get-html-translation-table.xml b/reference/strings/functions/get-html-translation-table.xml index 3868cb9251..8345463b3b 100644 --- a/reference/strings/functions/get-html-translation-table.xml +++ b/reference/strings/functions/get-html-translation-table.xml @@ -1,6 +1,6 @@ - + @@ -23,15 +23,15 @@ において内部的に使用される変換テーブルを返します。 - + 特殊文字はいくつかの方法でエンコードすることができます。 例えば、"", - " もしくは &#x22 + " もしくは " としてエンコードすることができます。 get_html_translation_table の返す値は、 htmlspecialcharshtmlentities で使っている形式だけです。 - + diff --git a/reference/strings/functions/localeconv.xml b/reference/strings/functions/localeconv.xml index 225c616a33..302943cec6 100644 --- a/reference/strings/functions/localeconv.xml +++ b/reference/strings/functions/localeconv.xml @@ -1,6 +1,6 @@ - + @@ -141,11 +141,11 @@ - + p_sign_posnn_sign_posn は、フォーマッタオプションの文字列を含みます。それぞれの数字は 上に一覧されている条件の 1 つを表します。 - + groupingフィールドには、グループ化する方法を表す数字を定義する配 列が含まれます。例えば、nl_NL ロケール用の通貨 groupingフィールド diff --git a/reference/strings/functions/quoted-printable-decode.xml b/reference/strings/functions/quoted-printable-decode.xml index 23acfc4840..cd95574a36 100644 --- a/reference/strings/functions/quoted-printable-decode.xml +++ b/reference/strings/functions/quoted-printable-decode.xml @@ -1,6 +1,6 @@ - + @@ -14,13 +14,13 @@ stringquoted_printable_decode stringstring - + この関数は、quoted printable 文字列をデコードし、 8 ビットバイナリ文字列を返します (RFC2821 の section 4.5.2 ではなく RFC2045 の section 6.7 によれば、付随するピリオドは行の開始から削除されません) 。 - + この関数は imap_qprint に似ていますが、 動作に IMAP モジュールを必要としないという違いがあります。 diff --git a/reference/strings/functions/setlocale.xml b/reference/strings/functions/setlocale.xml index cce8fea1d7..0579a7f653 100644 --- a/reference/strings/functions/setlocale.xml +++ b/reference/strings/functions/setlocale.xml @@ -1,6 +1,6 @@ - + @@ -26,7 +26,7 @@ ロケール情報を設定します。 - + ロケール情報は、スレッド毎ではなくプロセス毎に維持されます。 もし PHP を マルチスレッドサーバーAPI 上で動作させている場合、 スクリプトを実行している間にロケールの設定が突然変わるのを @@ -37,7 +37,7 @@ を使用してプロセスワイドなロケールを変更する事により発生します。 Windows では、PHP 7.0.5 以降、 ロケール情報はスレッド単位で維持されるようになっています。 - + diff --git a/reference/strings/functions/str-repeat.xml b/reference/strings/functions/str-repeat.xml index 68e72eb655..36ed6fb1c3 100644 --- a/reference/strings/functions/str-repeat.xml +++ b/reference/strings/functions/str-repeat.xml @@ -1,6 +1,6 @@ - + @@ -36,9 +36,9 @@ times - + string を繰り返す回数。 - + times は 0 以上でなければなりません。 times が diff --git a/reference/strings/functions/stripos.xml b/reference/strings/functions/stripos.xml index 533cc8e4c5..ed5b0ab40a 100644 --- a/reference/strings/functions/stripos.xml +++ b/reference/strings/functions/stripos.xml @@ -1,6 +1,6 @@ - + @@ -20,10 +20,10 @@ 文字列 haystack の中で needle が最初に現れる位置を探します。 - + strpos と異なり、stripos は大文字小文字を区別しません。 - + diff --git a/reference/strings/functions/strncasecmp.xml b/reference/strings/functions/strncasecmp.xml index 54f9e86c53..56795e6406 100644 --- a/reference/strings/functions/strncasecmp.xml +++ b/reference/strings/functions/strncasecmp.xml @@ -1,6 +1,6 @@ - + @@ -90,7 +90,7 @@ $var1 = 'Hello John'; $var2 = 'hello Doe'; if (strncasecmp($var1, $var2, 5) === 0) { - echo 'First 5 characters of $var1 and $var2 are equals in a case-insensitive string comparison'; + echo 'First 5 characters of $var1 and $var2 are equal in a case-insensitive string comparison'; } ?> ]]> diff --git a/reference/strings/functions/strpbrk.xml b/reference/strings/functions/strpbrk.xml index 865c1c2e9c..3db37b2742 100644 --- a/reference/strings/functions/strpbrk.xml +++ b/reference/strings/functions/strpbrk.xml @@ -1,6 +1,6 @@ - + @@ -15,10 +15,10 @@ stringstring stringcharacters - + strpbrk は、文字列 string - から characters を探します。 - + から characters に含まれる文字のいずれかを探します。 + diff --git a/reference/strings/functions/strripos.xml b/reference/strings/functions/strripos.xml index 5f8f48e19e..d080d25a02 100644 --- a/reference/strings/functions/strripos.xml +++ b/reference/strings/functions/strripos.xml @@ -1,6 +1,6 @@ - + @@ -20,10 +20,10 @@ 文字列 haystack の中で、 needle が最後に現れる位置を探します。 - + strrpos と異なり、strripos は大文字小文字を区別しません。 - +